:root {
  --clay-50: #fdf7f5;
  --clay-100: #fbece7;
  --clay-500: #c05c3e;
  --clay-600: #a44b30;
  --clay-700: #7e3621;
  --sage-50: #f5f7f4;
  --sage-100: #e7ece4;
  --sage-500: #606c56;
  --sage-600: #4d5844;
  --ochre-500: #d4a373;
  --canvas-50: #faf8f5;
  --canvas-100: #f4efea;
  --canvas-200: #ebe4dc;
  --paper: #fffdfc;
  --ink-800: #2c2a29;
  --ink-900: #1c1b1a;
  --text: #2c2a29;
  --text-secondary: #5f5751;
  --text-muted: #6f6761;
  --background: #faf8f5;
  --background-secondary: #f4efea;
  --surface: #fffdfc;
  --surface-subtle: #f5f7f4;
  --border: #d8cec2;
  --border-light: #ebe4dc;
  --divider: rgb(72 58 48 / 12%);
  --cta-bg: #a44b30;
  --cta-hover: #7e3621;
  --shadow: 0 18px 50px rgb(44 42 41 / 10%);
  --shadow-soft: 0 10px 30px rgb(44 42 41 / 8%);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Avenir Next", Avenir, system-ui, sans-serif;
  --shell: 1180px;
  --header-height: 78px;
}

html[data-theme="darkroom"] {
  --clay-50: #38251f;
  --clay-100: #422722;
  --clay-500: #d27a5d;
  --clay-600: #e0a28c;
  --clay-700: #f0b59c;
  --sage-50: #2b3029;
  --sage-100: #31392d;
  --sage-500: #87937e;
  --sage-600: #aeb9a8;
  --canvas-50: #1c1b1a;
  --canvas-100: #24211f;
  --canvas-200: #342f2c;
  --paper: #2b2826;
  --ink-800: #f7f2ee;
  --ink-900: #11100f;
  --text: #f7f2ee;
  --text-secondary: #c9bbb0;
  --text-muted: #a59488;
  --background: #1c1b1a;
  --background-secondary: #24211f;
  --surface: #24211f;
  --surface-subtle: #2b2927;
  --border: #4a423c;
  --border-light: #3a332e;
  --divider: rgb(251 236 231 / 14%);
  --shadow: 0 18px 50px rgb(0 0 0 / 28%);
  --shadow-soft: 0 10px 30px rgb(0 0 0 / 22%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7vw, 7.25rem);
  font-weight: 600;
}

h1 em {
  color: var(--clay-500);
  font-weight: 500;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 600;
}

.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: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink-900);
  color: #fff;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--ochre-500);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--clay-600);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--cta-bg);
  border-radius: 8px;
  background: var(--cta-bg);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--cta-hover);
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--divider);
  box-shadow: 0 8px 28px rgb(44 42 41 / 5%);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--surface);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-thread {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-thread-clay {
  stroke: var(--clay-500);
  stroke-width: 5;
}

.brand-thread-sage {
  stroke: var(--sage-500);
  stroke-width: 3;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.48rem;
  letter-spacing: 0.11em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--clay-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.theme-toggle,
.menu-toggle {
  border: 1px solid var(--border-light);
  background: var(--surface);
  cursor: pointer;
}

.theme-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
}

.theme-icon {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="darkroom"] .theme-icon-sun {
  display: none;
}

html[data-theme="darkroom"] .theme-icon-moon {
  display: block;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: clamp(70px, 8vw, 120px);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.88fr);
  gap: clamp(46px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.75;
}

.handwritten-note {
  margin-bottom: 30px;
  color: var(--sage-500);
  font-family: var(--display);
  font-size: 1.16rem;
  font-style: italic;
}

.availability-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  width: 184px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--text) 42%, transparent);
  border-radius: 8px;
  background: var(--ink-900);
  color: #fff;
  text-align: left;
}

.store-badge[disabled] {
  cursor: not-allowed;
  opacity: 0.74;
}

.store-badge-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.store-badge-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.store-badge-copy {
  display: grid;
  line-height: 1.16;
}

.store-badge-copy small {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge-copy strong {
  margin-top: 3px;
  font-size: 0.94rem;
}

.store-badge-id {
  grid-column: 1 / -1;
  color: #c7beb8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.hero-thread {
  position: absolute;
  z-index: 0;
  width: 55vw;
  height: 1px;
  background: var(--border);
  opacity: 0.55;
  transform-origin: left;
}

.hero-thread-one {
  top: 15%;
  left: -8%;
  transform: rotate(12deg);
}

.hero-thread-two {
  right: -20%;
  bottom: 12%;
  transform: rotate(-18deg);
}

.art-placeholder {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.art-placeholder figcaption {
  padding: 15px 18px 17px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.art-placeholder figcaption strong {
  color: var(--text-secondary);
}

.placeholder-meta {
  min-height: 38px;
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 13px;
  border-bottom: 1px solid var(--border-light);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.59rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-meta span:first-child {
  color: var(--clay-500);
  font-weight: 700;
}

.hero-tableau {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 430px;
  background:
    linear-gradient(145deg, rgb(192 92 62 / 8%), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 48px, rgb(96 108 86 / 4%) 49px 50px),
    var(--background-secondary);
  overflow: hidden;
}

.phone-frame {
  position: absolute;
  z-index: 4;
  top: 8%;
  left: 50%;
  width: 42%;
  height: 85%;
  padding: 9px;
  border: 2px solid var(--ink-800);
  border-radius: 34px;
  background: var(--ink-900);
  box-shadow: 0 28px 70px rgb(28 27 26 / 26%);
  transform: translateX(-50%) rotate(1.5deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 33%;
  height: 15px;
  border-radius: 0 0 12px 12px;
  background: var(--ink-900);
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 12px 10px;
  border-radius: 25px;
  background: #faf8f5;
  overflow: hidden;
}

.phone-header {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c2a29;
  font-family: var(--display);
  font-size: 0.62rem;
}

.phone-header span {
  width: 16px;
  height: 16px;
  border: 1px solid #d8cec2;
  border-radius: 50%;
}

.journal-preview {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  overflow: hidden;
}

.journal-preview::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(28 27 26 / 75%), rgb(28 27 26 / 4%) 60%),
    radial-gradient(circle at 68% 30%, #d4a373 0 12%, transparent 13%),
    linear-gradient(135deg, #87937e 0 38%, #c9b6a7 39% 60%, #a44b30 61%);
  content: "";
}

.journal-preview-small::before {
  background:
    linear-gradient(to top, rgb(28 27 26 / 75%), rgb(28 27 26 / 4%) 60%),
    radial-gradient(circle at 28% 25%, #f7d8c9 0 9%, transparent 10%),
    linear-gradient(145deg, #c05c3e 0 36%, #d4a373 37% 58%, #606c56 59%);
}

.journal-preview-main {
  height: 54%;
}

.journal-preview-small {
  height: 32%;
}

.journal-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 8px;
}

.journal-copy {
  position: relative;
  z-index: 2;
  display: grid;
}

.journal-copy strong {
  font-family: var(--display);
  font-size: 0.72rem;
}

.journal-copy small {
  margin-top: 3px;
  font-size: 0.38rem;
  letter-spacing: 0.12em;
}

.photo-print {
  position: absolute;
  z-index: 3;
  width: 30%;
  padding: 9px 9px 24px;
  background: #fffdfc;
  box-shadow: 0 16px 38px rgb(44 42 41 / 15%);
}

.photo-print i {
  position: absolute;
  right: 16%;
  bottom: 10px;
  left: 16%;
  height: 2px;
  background: #ebe4dc;
}

.print-one {
  top: 13%;
  left: 3%;
  transform: rotate(-8deg);
}

.print-two {
  right: 2%;
  bottom: 13%;
  transform: rotate(7deg);
}

.abstract-photo {
  display: block;
  aspect-ratio: 4 / 3;
}

.abstract-photo-one {
  background:
    radial-gradient(circle at 42% 38%, #ebc6b6 0 8%, transparent 9%),
    linear-gradient(147deg, #87937e 0 43%, #d8c7b7 44% 63%, #7e3621 64%);
}

.abstract-photo-two {
  background:
    radial-gradient(circle at 65% 36%, #f4efea 0 10%, transparent 11%),
    linear-gradient(30deg, #d4a373 0 36%, #606c56 37% 58%, #c05c3e 59%);
}

.tableau-weave {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--clay-500);
  stroke-linecap: round;
  stroke-width: 2;
  opacity: 0.45;
}

.tableau-weave path:last-child {
  stroke: var(--sage-500);
}

.problem-section {
  border-block: 1px solid var(--divider);
  background: var(--background-secondary);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}

.split-heading {
  max-width: none;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(50px, 9vw, 130px);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 660px;
  margin-inline: auto;
}

.stream-art {
  box-shadow: none;
}

.media-stream {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 350px;
  background: var(--surface);
  overflow: hidden;
}

.thumbnail-field {
  position: absolute;
  inset: 8% 45% 8% 4%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  opacity: 0.55;
  transform: perspective(800px) rotateY(12deg);
  transform-origin: left;
}

.thumbnail-field span {
  border: 1px solid var(--border-light);
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 46%, rgb(96 108 86 / 25%) 47% 58%, transparent 59%),
    var(--background-secondary);
}

.thumbnail-field span:nth-child(3n + 1) {
  background:
    linear-gradient(35deg, rgb(192 92 62 / 23%) 0 42%, transparent 43%),
    var(--background-secondary);
}

.thumbnail-field span:nth-child(4n) {
  filter: grayscale(1);
}

.stream-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 15%, var(--surface) 60%);
}

.stream-thread {
  position: absolute;
  z-index: 2;
  inset: 10% 2%;
  width: 96%;
  height: 80%;
  fill: none;
  stroke: var(--clay-500);
  stroke-width: 3;
}

.selected-memories {
  position: absolute;
  z-index: 3;
  top: 14%;
  right: 4%;
  bottom: 13%;
  left: 53%;
}

.selected-memory {
  position: absolute;
  width: 24%;
  padding: 5px 5px 17px;
  border: 1px solid var(--border-light);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.selected-memory span {
  display: block;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--sage-500), var(--ochre-500));
}

.selected-memory small {
  position: absolute;
  bottom: 4px;
  left: 7px;
  color: var(--text-muted);
  font-size: 0.4rem;
  letter-spacing: 0.08em;
}

.selected-one {
  top: 8%;
  left: 0;
  transform: rotate(-4deg);
}

.selected-two {
  top: 1%;
  left: 19%;
  transform: rotate(2deg);
}

.selected-three {
  top: 21%;
  left: 39%;
  transform: rotate(-1deg);
}

.selected-four {
  top: 4%;
  right: 17%;
  transform: rotate(4deg);
}

.selected-five {
  top: 23%;
  right: 0;
  transform: rotate(-3deg);
}

.selected-two span,
.selected-five span {
  background: linear-gradient(40deg, var(--clay-500), var(--ochre-500));
}

.selected-three span {
  background: linear-gradient(145deg, var(--ochre-500), var(--canvas-200));
}

.meaning-statements {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  padding-top: 40px;
}

.meaning-statements p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.25;
}

.meaning-statements p:last-child {
  text-align: right;
}

.meaning-statements span {
  height: 1px;
  background: var(--clay-500);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  padding-top: 34px;
}

.process-number {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 18px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--background);
  color: var(--clay-500);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.phone-placeholder {
  box-shadow: none;
}

.mini-phone,
.device-pair {
  position: relative;
  aspect-ratio: 4 / 4.65;
  min-height: 390px;
  margin: 26px auto 0;
  overflow: hidden;
}

.mini-phone {
  width: 68%;
  padding: 12px;
  border: 7px solid var(--ink-900);
  border-bottom: 0;
  border-radius: 27px 27px 0 0;
  background: #faf8f5;
  box-shadow: 0 24px 50px rgb(44 42 41 / 15%);
}

.mini-phone-bar {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebe4dc;
  color: #2c2a29;
  font-family: var(--display);
  font-size: 0.62rem;
}

.mini-phone-bar span {
  width: 15px;
  height: 15px;
  border: 1px solid #d8cec2;
  border-radius: 50%;
}

.selection-progress {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px 2px 12px;
  color: #2c2a29;
}

.selection-progress div {
  display: grid;
}

.selection-progress b {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.selection-progress span,
.selection-progress small {
  color: #8c847d;
  font-size: 0.45rem;
  text-transform: uppercase;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.selection-grid i {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #d8cec2, #f4efea);
}

.selection-grid i:nth-child(3n + 1) {
  background: linear-gradient(145deg, #606c56, #d4a373);
}

.selection-grid i:nth-child(3n + 2) {
  background: linear-gradient(40deg, #c05c3e, #ebc6b6);
}

.selection-grid i.selected::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #c05c3e;
  color: #fff;
  content: "✓";
  font-size: 0.42rem;
}

.selection-meter {
  height: 4px;
  margin-top: 13px;
  border-radius: 2px;
  background: #ebe4dc;
}

.selection-meter span {
  width: 80%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #c05c3e;
}

.story-photo {
  margin: 13px 0;
  padding: 7px;
  border: 1px solid #ebe4dc;
}

.story-photo span {
  display: block;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 45% 35%, #fbece7 0 10%, transparent 11%),
    linear-gradient(145deg, #606c56, #d4a373 55%, #c05c3e);
}

.story-note {
  color: #2c2a29;
}

.story-note small,
.memo-length {
  color: #a44b30;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-note p {
  margin: 5px 0 12px;
  font-family: var(--display);
  font-size: 0.64rem;
  line-height: 1.45;
}

.waveform {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 8px;
  border-radius: 4px;
  background: #e7ece4;
}

.waveform span {
  width: 2px;
  height: 7px;
  flex: 1;
  border-radius: 1px;
  background: #606c56;
}

.waveform span:nth-child(2n) {
  height: 17px;
}

.waveform span:nth-child(3n) {
  height: 24px;
}

.device-pair {
  width: 92%;
}

.paired-device {
  position: absolute;
  width: 50%;
  height: 73%;
  padding: 7px;
  border: 5px solid var(--ink-900);
  border-radius: 23px;
  background: var(--ink-900);
  box-shadow: 0 20px 44px rgb(44 42 41 / 18%);
}

.paired-device-back {
  top: 13%;
  left: 9%;
  transform: rotate(-6deg);
}

.paired-device-front {
  right: 8%;
  bottom: 3%;
  transform: rotate(6deg);
}

.paired-screen {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 14px 9px;
  border-radius: 15px;
  background: #faf8f5;
  color: #2c2a29;
}

.paired-cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 11px;
  border-radius: 6px;
  background:
    linear-gradient(to top, rgb(28 27 26 / 58%), transparent 58%),
    linear-gradient(145deg, #606c56, #d4a373 58%, #c05c3e);
}

.paired-cover.alternate {
  background:
    linear-gradient(to top, rgb(28 27 26 / 58%), transparent 58%),
    linear-gradient(40deg, #c05c3e, #d4a373 48%, #606c56);
}

.paired-screen b {
  font-family: var(--display);
  font-size: 0.58rem;
}

.paired-screen small {
  margin-top: 4px;
  color: #606c56;
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sync-mark {
  position: absolute;
  z-index: 6;
  top: 42%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--sage-500);
  color: #fff;
  transform: translate(-50%, -50%);
}

.sync-mark svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.process-copy {
  padding: 30px 8px 0;
}

.process-copy h3 {
  min-height: 2.1em;
  margin-bottom: 16px;
}

.process-copy > p:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.woven-section {
  border-block: 1px solid var(--divider);
  background: var(--surface-subtle);
}

.timeline-placeholder {
  box-shadow: none;
}

.woven-timeline {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(90deg, transparent, rgb(192 92 62 / 5%), transparent),
    var(--surface);
  overflow: hidden;
}

.woven-timeline > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.timeline-thread {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
}

.clay-thread {
  stroke: var(--clay-500);
}

.sage-thread {
  stroke: var(--sage-500);
}

.ochre-thread {
  stroke: var(--ochre-500);
}

.timeline-stage {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--text);
}

.timeline-stage > small {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-moments {
  top: 37%;
  left: 5%;
  display: grid;
  grid-template-columns: repeat(3, 45px);
  gap: 5px;
}

.stage-moments span {
  aspect-ratio: 1;
  border: 5px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border);
  background: linear-gradient(145deg, var(--sage-500), var(--ochre-500));
}

.stage-moments span:nth-child(2) {
  background: linear-gradient(35deg, var(--clay-500), var(--ochre-500));
}

.stage-moments small {
  grid-column: 1 / -1;
  text-align: center;
}

.stage-month {
  top: 27%;
  left: 32%;
}

.stage-month div {
  width: 110px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  padding: 14px 8px;
  border: 8px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border), var(--shadow-soft);
  background:
    linear-gradient(to top, rgb(28 27 26 / 68%), transparent),
    linear-gradient(145deg, var(--sage-500), var(--ochre-500));
  color: #fff;
}

.stage-month b {
  font-family: var(--display);
  font-size: 1.1rem;
}

.stage-month div small {
  font-size: 0.4rem;
  text-transform: uppercase;
}

.stage-year {
  top: 23%;
  left: 59%;
}

.stage-year div {
  width: 160px;
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.stage-year b {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 1.4rem;
}

.stage-year i {
  background: linear-gradient(145deg, var(--clay-100), var(--sage-100));
}

.stage-journal {
  top: 19%;
  right: 5%;
}

.stage-journal div {
  width: 150px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--clay-600);
  border-left-width: 8px;
  border-radius: 3px 9px 9px 3px;
  background: var(--clay-500);
  color: #fff;
  box-shadow: var(--shadow);
}

.stage-journal b {
  font-family: var(--display);
  font-size: 1.15rem;
}

.stage-journal div small {
  margin-top: 8px;
  font-size: 0.46rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lasting-section {
  background: #1c1b1a;
  color: #f7f2ee;
}

.lasting-section .eyebrow {
  color: #d4a373;
}

.lasting-section .section-heading > p:last-child {
  color: #c9bbb0;
}

.trust-layout {
  display: grid;
  gap: 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid #3a332e;
  border-radius: 12px;
  background: #24211f;
}

.trust-card h3 {
  margin-bottom: 16px;
  color: #f7f2ee;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.trust-card > p:last-child {
  color: #c9bbb0;
  font-size: 0.88rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #606c56;
  color: #fff;
}

.trust-icon.clay {
  background: #c05c3e;
}

.trust-icon.ochre {
  background: #d4a373;
}

.trust-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.still-life-placeholder {
  border-color: #3a332e;
  background: #24211f;
  box-shadow: none;
}

.still-life-placeholder .placeholder-meta,
.still-life-placeholder figcaption {
  border-color: #3a332e;
  background: #24211f;
  color: #97887d;
}

.still-life-placeholder figcaption strong {
  color: #c9bbb0;
}

.still-life {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 400px;
  background:
    linear-gradient(155deg, rgb(212 163 115 / 13%), transparent 48%),
    #2e2a27;
  overflow: hidden;
}

.linen-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(7deg, transparent 0 8px, rgb(255 255 255 / 2%) 9px),
    repeating-linear-gradient(92deg, transparent 0 12px, rgb(255 255 255 / 1.5%) 13px);
}

.table-photo {
  position: absolute;
  padding: 8px 8px 22px;
  background: #f4efea;
  box-shadow: 0 20px 40px rgb(0 0 0 / 30%);
}

.table-photo span {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #87937e, #d4a373 50%, #c05c3e);
}

.table-photo-one {
  width: 22%;
  top: 17%;
  left: 7%;
  transform: rotate(-7deg);
}

.table-photo-two {
  width: 19%;
  right: 7%;
  bottom: 13%;
  transform: rotate(6deg);
}

.table-photo-two span {
  background: linear-gradient(40deg, #c05c3e, #d4a373 48%, #606c56);
}

.closed-journal {
  position: absolute;
  top: 18%;
  left: 37%;
  width: 27%;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #a44b30;
  border-left-width: 13px;
  border-radius: 4px 11px 11px 4px;
  background: #7e3621;
  box-shadow: 0 30px 70px rgb(0 0 0 / 37%);
  color: #fff;
  transform: rotate(-2deg);
}

.closed-journal i {
  position: absolute;
  inset: 13px;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 4px;
}

.closed-journal b {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
}

.closed-journal small {
  margin-top: 9px;
  font-size: 0.54rem;
  letter-spacing: 0.15em;
}

.table-device {
  position: absolute;
  right: 22%;
  bottom: -13%;
  width: 15%;
  height: 68%;
  padding: 7px;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 20px 40px rgb(0 0 0 / 35%);
  transform: rotate(5deg);
}

.table-device span {
  height: 100%;
  display: block;
  border-radius: 17px;
  background:
    linear-gradient(to top, rgb(28 27 26 / 75%), transparent),
    linear-gradient(145deg, #606c56, #d4a373);
}

.manifesto-section {
  padding-bottom: 70px;
}

.manifesto-placeholder {
  box-shadow: none;
}

.manifesto-visual {
  position: relative;
  aspect-ratio: 21 / 8;
  min-height: 380px;
  background:
    linear-gradient(90deg, rgb(28 27 26 / 10%), transparent 55%),
    var(--background-secondary);
  overflow: hidden;
}

.fabric-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(8deg, transparent 0 10px, rgb(96 108 86 / 3%) 11px),
    repeating-linear-gradient(94deg, transparent 0 13px, rgb(192 92 62 / 3%) 14px);
}

.album-page {
  position: absolute;
  top: 18%;
  width: 31%;
  height: 66%;
  padding: 17px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.album-page span {
  display: block;
  height: 72%;
  background: linear-gradient(145deg, var(--sage-500), var(--ochre-500));
}

.album-page i {
  width: 60%;
  height: 3px;
  display: block;
  margin: 16px auto 0;
  background: var(--border);
}

.left-page {
  left: 21%;
  transform: perspective(900px) rotateY(18deg);
}

.right-page {
  right: 19%;
  transform: perspective(900px) rotateY(-18deg);
}

.right-page span {
  background: linear-gradient(40deg, var(--clay-500), var(--ochre-500) 48%, var(--sage-500));
}

.hand-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--clay-600);
  stroke-linecap: round;
  stroke-width: 18;
  opacity: 0.38;
}

.hand-lines path:last-child {
  stroke: var(--sage-500);
}

.manifesto-placeholder blockquote {
  position: absolute;
  z-index: 4;
  top: 19%;
  left: 5%;
  width: 37%;
}

.manifesto-placeholder blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-style: italic;
  line-height: 1.1;
}

.faq-section {
  border-top: 1px solid var(--divider);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-layout .section-heading {
  margin: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
}

.faq-item button i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  position: relative;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--clay-500);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 54px 25px 2px;
  color: var(--text-secondary);
}

.faq-answer p {
  margin: 0;
}

.download-section {
  padding-top: 35px;
}

.download-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: clamp(60px, 9vw, 110px);
  border-radius: 12px;
  background: var(--cta-bg);
  color: #fff;
  overflow: hidden;
}

.download-weave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgb(255 255 255 / 18%);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.download-weave path:last-child {
  stroke: rgb(96 108 86 / 45%);
}

.download-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.download-copy .eyebrow {
  color: #fbece7;
}

.download-copy h2 {
  margin-bottom: 20px;
}

.download-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgb(255 255 255 / 82%);
  font-size: 1.05rem;
}

.store-row-centered {
  justify-content: center;
}

.site-footer {
  padding: 75px 0 24px;
  border-top: 1px solid var(--divider);
  background: var(--background-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.5fr) 0.6fr 0.6fr;
  gap: 70px;
}

.footer-brand > p {
  max-width: 400px;
  margin: 26px 0 0;
  color: var(--text-secondary);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
}

.footer-column a:hover {
  color: var(--clay-500);
}

.footer-column span[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js .reveal[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

.js .reveal[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 28px 20px;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--display);
    font-size: 1.5rem;
  }

  .mobile-nav .button {
    margin-top: 22px;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-art {
    width: min(100%, 740px);
    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .process-card {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 1.15fr);
    gap: 50px;
  }

  .process-card:nth-child(even) .phone-placeholder {
    order: 2;
  }

  .process-copy h3 {
    min-height: 0;
  }

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

  .trust-card {
    min-height: 0;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-cta,
  .theme-toggle span {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .split-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-card {
    display: block;
  }

  .process-card:nth-child(even) .phone-placeholder {
    order: initial;
  }

  .process-copy {
    padding: 28px 0 0;
  }

  .meaning-statements {
    grid-template-columns: 1fr;
  }

  .meaning-statements span {
    width: 50px;
  }

  .meaning-statements p:last-child {
    text-align: left;
  }

  .media-stream {
    aspect-ratio: auto;
    min-height: 460px;
  }

  .thumbnail-field {
    inset: 7% 8% 53%;
  }

  .stream-fade {
    background: linear-gradient(180deg, transparent 12%, var(--surface) 57%);
  }

  .selected-memories {
    top: 55%;
    right: 5%;
    bottom: 5%;
    left: 5%;
  }

  .stream-thread {
    inset: 15% 0;
    width: 100%;
    height: 70%;
    transform: rotate(22deg);
  }

  .woven-timeline {
    min-height: 620px;
  }

  .woven-timeline > svg {
    transform: rotate(90deg) scale(1.8);
  }

  .stage-moments {
    top: 7%;
    left: 9%;
  }

  .stage-month {
    top: 25%;
    left: 50%;
  }

  .stage-year {
    top: 48%;
    left: 10%;
  }

  .stage-journal {
    top: 65%;
    right: 9%;
  }

  .still-life {
    aspect-ratio: auto;
    min-height: 480px;
  }

  .closed-journal {
    top: 18%;
    left: 30%;
    width: 40%;
    height: 54%;
  }

  .table-photo-one {
    width: 33%;
  }

  .table-photo-two {
    width: 28%;
  }

  .table-device {
    right: 12%;
    width: 24%;
  }

  .manifesto-visual {
    min-height: 530px;
  }

  .manifesto-placeholder blockquote {
    top: 10%;
    left: 7%;
    width: 86%;
  }

  .album-page {
    top: 48%;
    width: 39%;
    height: 40%;
  }

  .left-page {
    left: 12%;
  }

  .right-page {
    right: 12%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .section {
    padding-block: 82px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 7px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    gap: 54px;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: 100%;
  }

  .hero-tableau {
    min-height: 410px;
  }

  .phone-frame {
    width: 55%;
  }

  .photo-print {
    width: 34%;
  }

  .placeholder-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .mini-phone,
  .device-pair {
    min-height: 365px;
  }

  .mini-phone {
    width: 75%;
  }

  .selected-memory {
    width: 27%;
  }

  .selected-one {
    left: 0;
  }

  .selected-two {
    left: 17%;
  }

  .selected-three {
    left: 36%;
  }

  .selected-four {
    right: 15%;
  }

  .timeline-stage {
    transform: scale(0.9);
  }

  .stage-month {
    left: 45%;
  }

  .trust-card {
    padding: 26px;
  }

  .manifesto-placeholder blockquote p {
    font-size: 2.25rem;
  }

  .download-panel {
    min-height: 560px;
    padding-inline: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (prefers-contrast: more) {
  :root {
    --border: #7b6f66;
    --border-light: #9e9187;
  }

  .eyebrow,
  .placeholder-meta span:first-child {
    color: var(--clay-700);
  }
}
