@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/WixMadeforDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/WixMadeforDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/WixMadeforDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./assets/Jost-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./assets/Jost-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("./assets/Jost-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --milk: #fffaf5;
  --cream: #fff6eb;
  --peach: #ffece1;
  --pink: #ffe9e9;
  --rose: #c15966;
  --wine: #833036;
  --wine-dark: #591e25;
  --ink-soft: #8d6064;
  --paper: #fffdf9;
  --line: rgba(131, 48, 54, 0.15);
  --shadow-soft: 0 26px 70px rgba(89, 30, 37, 0.15);
  --shadow-strong: 0 38px 90px rgba(89, 30, 37, 0.24);
  --radius: 8px;
  --max: 1180px;
  --heading: "Wix Madefor Display", "Jost", system-ui, sans-serif;
  --body: "Jost", "Wix Madefor Display", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(131, 48, 54, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(131, 48, 54, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--milk);
  color: var(--wine-dark);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(89, 30, 37, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 30, 37, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  mix-blend-mode: multiply;
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  display: grid;
  grid-template-columns: 184px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(131, 48, 54, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 18px 52px rgba(89, 30, 37, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  width: 168px;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.brand img {
  width: 162px;
  height: auto;
  transform: scale(1.12);
  transform-origin: left center;
}

.brand span {
  display: none;
  color: var(--wine);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(89, 30, 37, 0.78);
  font-size: 15px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: var(--milk);
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(131, 48, 54, 0.24);
  cursor: pointer;
}

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

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(48px, 6vw, 84px) 0 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 10px;
}

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

h1,
h2,
h3 {
  font-family: var(--heading);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--wine-dark);
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  color: var(--wine-dark);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.96;
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 600;
}

p {
  color: rgba(89, 30, 37, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.lead {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.38;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: var(--heading);
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 22px;
  color: rgba(89, 30, 37, 0.9);
  font-size: clamp(24px, 2.35vw, 31px);
  font-weight: 400;
  line-height: 1.3;
}

.hero-photo-card {
  position: relative;
  margin: 0 0 22px;
  padding: 4px;
  border: 1px solid rgba(131, 48, 54, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 26px 58px rgba(89, 30, 37, 0.12);
  overflow: hidden;
}

.hero-photo-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.hero-demo-button {
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--wine);
  color: var(--milk);
  font-family: var(--heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  box-shadow:
    0 18px 42px rgba(89, 30, 37, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.desktop-version .desktop-site-header {
  position: sticky;
}

.desktop-version .desktop-landing-hero {
  min-height: calc(100vh - 102px);
  padding-top: clamp(34px, 5vw, 64px);
}

.desktop-version .hero-copy {
  max-width: 680px;
}

.desktop-version .hero-demo-button {
  max-width: 540px;
}

.desktop-hero-footnote {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(89, 30, 37, 0.62);
  font-size: 16px;
  line-height: 1.36;
}

.desktop-hero-visual {
  display: grid;
  gap: 14px;
  align-self: center;
}

.desktop-version .desktop-hero-visual .hero-photo-card {
  margin: 0;
}

.desktop-version .desktop-hero-visual .hero-photo-card img {
  width: 100%;
  height: min(58vh, 560px);
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.desktop-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.desktop-proof-row span {
  min-height: 48px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.78);
  color: rgba(89, 30, 37, 0.76);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 32px rgba(89, 30, 37, 0.08);
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--wine);
  color: var(--milk);
  box-shadow: 0 22px 44px rgba(131, 48, 54, 0.28);
}

.button-secondary {
  border-color: rgba(131, 48, 54, 0.2);
  background: rgba(255, 255, 255, 0.45);
  color: var(--wine-dark);
}

.demo-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--wine);
  font-size: 15px;
  font-weight: 600;
}

.hero-book {
  width: 100%;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.book-toolbar {
  min-height: 34px;
  padding: 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(89, 30, 37, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.book-toolbar strong {
  color: var(--wine);
}

.flipbook-stage {
  position: relative;
  width: 100%;
  min-height: 430px;
  display: grid;
  place-items: center;
  perspective: 1500px;
  touch-action: pan-y;
  user-select: none;
}

.book-controls {
  margin-top: 2px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 8px;
  align-items: center;
}

.book-controls p {
  margin-bottom: 0;
  color: rgba(89, 30, 37, 0.68);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.book-controls .book-nav {
  width: 38px;
  height: 38px;
  border-color: rgba(131, 48, 54, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(255, 243, 235, 0.72));
  color: rgba(89, 30, 37, 0.74);
  font-size: 20px;
  font-weight: 600;
  box-shadow:
    0 8px 20px rgba(89, 30, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.book-controls .book-nav:hover {
  border-color: rgba(131, 48, 54, 0.28);
  color: var(--wine);
  transform: translateY(-1px);
}

.book-controls .book-nav:disabled {
  opacity: 0.46;
  cursor: default;
  transform: none;
}

.swipe-cue {
  position: absolute;
  top: 78%;
  left: calc(50% + min(141px, 37vw) - 58px);
  z-index: 36;
  width: 96px;
  height: 86px;
  pointer-events: none;
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.swipe-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.swipe-cue-arrow {
  position: absolute;
  top: 30px;
  left: -2px;
  width: 56px;
  height: 20px;
  animation: swipeArrowGlow 1.9s ease-in-out infinite;
}

.swipe-cue-arrow::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.94);
  box-shadow:
    0 0 8px rgba(255, 250, 245, 0.9),
    0 3px 9px rgba(89, 30, 37, 0.2);
  transform: translateY(-50%);
}

.swipe-cue-arrow::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(255, 250, 245, 0.96);
  border-bottom: 2px solid rgba(255, 250, 245, 0.96);
  filter: drop-shadow(0 0 5px rgba(255, 250, 245, 0.85));
  transform: translateY(-50%) rotate(45deg);
}

.swipe-cue-hand {
  position: absolute;
  top: 34px;
  left: 38px;
  width: 40px;
  height: 46px;
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 8px 12px rgba(89, 30, 37, 0.18))
    drop-shadow(0 0 7px rgba(255, 250, 245, 0.55));
  animation: swipeHandGlide 1.9s ease-in-out infinite;
}

.swipe-cue-hand svg {
  width: 100%;
  height: 100%;
  transform: rotate(-8deg);
  overflow: visible;
}

.swipe-hand-fill {
  fill: rgba(255, 250, 245, 0.98);
  stroke: rgba(131, 48, 54, 0.5);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.swipe-hand-line {
  fill: none;
  stroke: rgba(131, 48, 54, 0.46);
  stroke-width: 2;
  stroke-linecap: round;
}

.swipe-hand-knuckle {
  fill: none;
  stroke: rgba(131, 48, 54, 0.34);
  stroke-width: 1.7;
  stroke-linecap: round;
}

@keyframes swipeHandGlide {
  0%,
  100% {
    transform: translate3d(8px, 0, 0);
  }

  50% {
    transform: translate3d(-22px, 0, 0);
  }
}

@keyframes swipeArrowGlow {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(2px);
  }

  50% {
    opacity: 1;
    transform: translateX(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .swipe-cue-arrow,
  .swipe-cue-hand {
    animation: none;
  }
}

.real-flip-stage {
  min-height: 400px;
  padding: 6px 0 0;
  overflow: visible;
  touch-action: pan-y;
}

.real-book {
  width: min(282px, 74vw);
  height: 390px;
  margin: 0 auto;
  overflow: visible;
  filter: drop-shadow(0 22px 28px rgba(89, 30, 37, 0.2));
}

.desktop-version .memory-step-gift > .hero-book {
  grid-column: 1 / -1;
}

.desktop-version .memory-step-gift .real-flip-stage {
  min-height: 500px;
}

.desktop-version .memory-step-gift .real-book {
  width: min(340px, 34vw);
  height: 470px;
}

.real-book.stf__parent {
  overflow: visible !important;
  touch-action: pan-y !important;
}

.real-book .stf__wrapper,
.real-book .stf__block {
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
  touch-action: pan-y !important;
}

.real-book .flip-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(89, 30, 37, 0.08), transparent 10%, transparent),
    var(--paper);
  box-shadow:
    inset 7px 0 14px rgba(89, 30, 37, 0.08),
    inset -1px 0 0 rgba(89, 30, 37, 0.1);
  backface-visibility: hidden;
}

.real-book .flip-page img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--paper);
  pointer-events: none;
}

.real-book .flip-page:not(.real-cover):not(.real-back-cover) img {
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transform-origin: center center;
}

.real-book .flip-page.is-blank-back {
  background:
    linear-gradient(90deg, rgba(89, 30, 37, 0.08), rgba(255, 255, 255, 0.96) 16%, rgba(255, 255, 255, 0.99) 72%, rgba(222, 205, 191, 0.34)),
    #fffdf9 !important;
  box-shadow:
    inset 8px 0 18px rgba(89, 30, 37, 0.08),
    inset -6px 0 12px rgba(89, 30, 37, 0.05),
    0 14px 34px rgba(89, 30, 37, 0.1);
}

.real-book .flip-page.is-blank-back img {
  opacity: 0;
}

.real-cover,
.real-back-cover {
  position: relative;
  border-radius: 4px 5px 5px 4px;
  background:
    linear-gradient(95deg, rgba(65, 20, 27, 0.55), transparent 17%, rgba(255, 250, 245, 0.08) 48%, rgba(58, 18, 24, 0.24) 100%),
    radial-gradient(circle at 32% 24%, rgba(255, 250, 245, 0.06), transparent 30%),
    #8b4048 !important;
  box-shadow:
    inset 9px 0 12px rgba(33, 8, 13, 0.27),
    inset -3px 0 7px rgba(255, 250, 245, 0.08),
    inset 0 0 0 1px rgba(255, 250, 245, 0.06),
    2px 2px 0 rgba(98, 35, 43, 0.82),
    3px 3px 0 rgba(68, 22, 30, 0.18) !important;
}

.real-cover::before,
.real-back-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(255, 250, 245, 0.12) 45%, transparent 55%),
    repeating-linear-gradient(98deg, rgba(255, 250, 245, 0.035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(8deg, rgba(31, 10, 13, 0.055) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.real-cover::after,
.real-back-cover::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -3px;
  bottom: 5px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, #7b333d 0%, #5d222c 70%, #321017 100%);
  box-shadow: inset 1px 0 4px rgba(28, 8, 12, 0.3);
}

.real-cover-spine {
  position: absolute;
  inset: 0 auto 0 0;
  width: 22px;
  background:
    linear-gradient(90deg, rgba(31, 10, 13, 0.42), rgba(91, 27, 34, 0.2), rgba(255, 250, 245, 0.08)),
    #7c343d;
  box-shadow:
    inset -1px 0 0 rgba(255, 250, 245, 0.18),
    5px 0 14px rgba(31, 10, 13, 0.18);
}

.real-cover-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 84px;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -51%);
  filter: drop-shadow(0 1px 1px rgba(35, 8, 12, 0.14));
}

.real-book .real-cover-brand .real-cover-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  pointer-events: none;
}

.button-light {
  width: fit-content;
  margin-top: 24px;
  background: var(--milk);
  color: var(--wine);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.proof-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.proof-list li {
  padding: 9px 14px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(89, 30, 37, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.mobile-start-card {
  max-width: 520px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(89, 30, 37, 0.08);
}

.mobile-start-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-start-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine-dark);
  font-family: var(--heading);
  font-size: 22px;
  line-height: 1.08;
}

.mobile-start-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.38;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.fingerprint-lines {
  position: absolute;
  width: min(620px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.42;
  transform: rotate(-10deg);
  background:
    repeating-radial-gradient(
      closest-side,
      transparent 0 16px,
      rgba(193, 89, 102, 0.22) 17px 19px,
      transparent 20px 31px
    );
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M100 181C68 145 28 122 28 74C28 45 48 27 74 27C89 27 98 35 100 42C102 35 111 27 126 27C152 27 172 45 172 74C172 122 132 145 100 181Z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  z-index: -2;
}

.premium-book {
  position: relative;
  width: min(650px, 96%);
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  align-items: stretch;
  padding: 22px;
  border-radius: 10px;
  background: #f7f0e8;
  box-shadow: var(--shadow-strong);
  transform: rotate(-2deg);
}

.premium-book::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(89, 30, 37, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.book-page {
  min-height: 386px;
  background: var(--paper);
  box-shadow: inset 0 0 32px rgba(89, 30, 37, 0.08);
}

.book-page-left {
  padding: 54px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px 0 0 6px;
}

.book-page-left strong {
  max-width: 300px;
  margin-bottom: 18px;
  color: var(--wine-dark);
  font-family: var(--heading);
  font-size: 34px;
  line-height: 1;
}

.book-page-left p {
  max-width: 290px;
  font-size: 17px;
}

.page-kicker {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.book-spine {
  background: linear-gradient(90deg, rgba(89, 30, 37, 0.12), rgba(255, 255, 255, 0.35), rgba(89, 30, 37, 0.15));
}

.book-page-right {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
}

.book-page-right img {
  width: 118%;
  max-width: none;
  transform: rotate(2deg);
}

.floating-page,
.cover-card {
  position: absolute;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.floating-page {
  width: 128px;
  padding: 7px;
  overflow: hidden;
}

.floating-page img {
  border-radius: 4px;
}

.floating-page-one {
  top: 54px;
  right: 18px;
  transform: rotate(10deg);
}

.floating-page-two {
  left: 4px;
  bottom: 72px;
  transform: rotate(-12deg);
}

.cover-card {
  right: 64px;
  bottom: 38px;
  width: 124px;
  padding: 8px;
  transform: rotate(7deg);
  background: var(--wine);
}

.preview-band,
.process-section,
.styles-section,
.faq-section {
  padding: clamp(72px, 8vw, 120px) 20px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.preview-band {
  background: var(--wine);
  color: var(--milk);
}

.preview-band .eyebrow,
.preview-band h2,
.preview-band p,
.preview-band h3,
.preview-band .viewer-count {
  color: var(--milk);
}

.preview-band p {
  opacity: 0.82;
}

.page-viewer {
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.viewer-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.viewer-count {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.viewer-copy h3 {
  font-size: clamp(34px, 4vw, 58px);
}

.viewer-controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 245, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.12);
  color: var(--milk);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.page-stack {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.page-stack img {
  position: absolute;
  width: min(390px, 82vw);
  max-height: 600px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateX(24px) rotate(3deg) scale(0.94);
  transition: opacity 240ms ease, transform 300ms ease;
}

.page-stack img.active {
  opacity: 1;
  transform: translateX(0) rotate(-2deg) scale(1);
}

.hero-demo {
  width: 100%;
}

.demo-phone {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(255, 236, 225, 0.82));
  box-shadow: var(--shadow-strong);
}

.demo-phone::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(131, 48, 54, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.demo-phone-top {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(89, 30, 37, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.demo-phone-top strong {
  color: var(--wine);
}

.hero-page-stack {
  min-height: 500px;
}

.hero-page-stack img {
  width: min(330px, 78vw);
  max-height: 492px;
}

.demo-controls {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 12px;
  align-items: center;
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 14px 32px rgba(89, 30, 37, 0.09);
}

.demo-controls .icon-button {
  flex: 0 0 auto;
  border-color: rgba(131, 48, 54, 0.18);
  background: var(--wine);
  color: var(--milk);
}

.demo-controls h2 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.08;
}

.demo-controls p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.35;
}

.quick-meaning {
  padding: 22px 18px;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(89, 30, 37, 0.08);
}

.quick-meaning h2 {
  font-size: clamp(30px, 8vw, 42px);
}

.quick-meaning p {
  margin-bottom: 0;
}

.memory-flow {
  padding: clamp(54px, 7vw, 94px) 0 clamp(28px, 5vw, 54px);
}

.memory-flow-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.memory-flow-heading h2 {
  max-width: 720px;
  font-size: clamp(34px, 6vw, 62px);
}

.memory-flow-heading p {
  max-width: 650px;
  margin-bottom: 0;
}

.memory-steps {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 14px;
}

.memory-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 42px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(131, 48, 54, 0.2) 15%,
    rgba(131, 48, 54, 0.18) 85%,
    transparent
  );
  pointer-events: none;
}

.memory-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 236, 225, 0.56)),
    var(--paper);
  box-shadow: 0 22px 54px rgba(89, 30, 37, 0.09);
  overflow: hidden;
}

.memory-step::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 130px;
  aspect-ratio: 1;
  border: 1px solid rgba(193, 89, 102, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      closest-side,
      transparent 0 9px,
      rgba(193, 89, 102, 0.1) 10px 11px,
      transparent 12px 18px
    );
  opacity: 0.62;
  pointer-events: none;
}

.memory-step-photos {
  grid-row: span 2;
}

.memory-step-photos,
.memory-step-stories,
.memory-step-gift,
.memory-step-video {
  grid-template-rows: auto 1fr;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--milk);
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(131, 48, 54, 0.18);
}

.step-copy {
  position: relative;
  z-index: 1;
}

.step-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 32px);
}

.step-copy p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.44;
}

.step-copy .step-note {
  margin-top: -3px;
  margin-bottom: 0;
  color: rgba(89, 30, 37, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}

.portrait-pair,
.memory-prompts,
.gift-route {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.portrait-pair {
  align-self: end;
  min-height: 210px;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 8px;
}

.portrait-card {
  position: relative;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.portrait-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 236, 225, 0.72);
  filter: blur(20px);
  transform: translateY(-58%);
  z-index: -1;
}

.portrait-card img {
  width: clamp(116px, 16vw, 154px);
  height: clamp(116px, 16vw, 154px);
  border: 8px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 22px 42px rgba(89, 30, 37, 0.18),
    0 0 0 1px rgba(131, 48, 54, 0.1);
}

.portrait-card-left img {
  transform: rotate(-4deg);
}

.portrait-card-right img {
  transform: rotate(4deg);
}

.portrait-card figcaption {
  padding: 7px 12px;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  color: rgba(89, 30, 37, 0.74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.portrait-heart {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--milk);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 14px 30px rgba(193, 89, 102, 0.24);
}

.memory-prompts {
  margin: 12px 0 0;
  color: rgba(89, 30, 37, 0.78);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.36;
}

.gift-route {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gift-route span {
  position: relative;
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--wine-dark);
  color: var(--milk);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(89, 30, 37, 0.14);
}

.gift-route span:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: rgba(255, 250, 245, 0.64);
}

.memory-step-video {
  grid-column: 1 / -1;
  min-height: auto;
  grid-template-rows: auto auto;
}

.memory-step-video::after {
  right: 18px;
  bottom: -54px;
  width: 170px;
  opacity: 0.34;
}

.gift-video-card {
  position: relative;
  z-index: 1;
  grid-column: 2;
  width: min(292px, 100%);
  margin-top: 8px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(131, 48, 54, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(255, 236, 225, 0.72)),
    var(--paper);
  box-shadow:
    0 24px 54px rgba(89, 30, 37, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.gift-video-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 9px;
  background: #2a1718;
}

.gift-video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 8px;
  background: #2a1718;
  object-fit: contain;
}

.video-toggle {
  position: absolute;
  left: 50%;
  bottom: 16px;
  min-height: 38px;
  padding: 0 14px 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 245, 0.58);
  border-radius: 999px;
  background: rgba(89, 30, 37, 0.72);
  color: var(--milk);
  font-size: 13px;
  font-weight: 600;
  box-shadow:
    0 12px 28px rgba(35, 8, 12, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.video-toggle:hover {
  border-color: rgba(255, 250, 245, 0.78);
  background: rgba(89, 30, 37, 0.82);
  transform: translateX(-50%) translateY(-1px);
}

.video-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}

.video-toggle-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.video-toggle.is-playing .video-toggle-icon::before,
.video-toggle.is-playing .video-toggle-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 4px;
  height: 10px;
  border: 0;
  border-radius: 1px;
  background: currentColor;
}

.video-toggle.is-playing .video-toggle-icon::before {
  left: 3px;
}

.video-toggle.is-playing .video-toggle-icon::after {
  left: 9px;
}

.bottom-cta {
  padding: 2px 0 34px;
}

.bottom-cta-button {
  width: 100%;
  min-height: 56px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 0;
  border-radius: 16px;
  background: var(--wine);
  color: var(--milk);
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 12px 24px rgba(89, 30, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bottom-cta-button span:first-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.bottom-cta-button:hover {
  background: #91353b;
  box-shadow:
    0 14px 28px rgba(89, 30, 37, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.demo-contents {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.demo-contents article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.1);
}

.demo-contents span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 250, 245, 0.7);
  font-weight: 600;
}

.demo-contents h3,
.demo-contents p {
  color: var(--milk);
}

.demo-contents p {
  margin-bottom: 0;
  opacity: 0.78;
}

.value-section {
  padding: clamp(76px, 8vw, 132px) 0;
  display: grid;
  grid-template-columns: 0.78fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.value-copy {
  position: sticky;
  top: 120px;
}

.value-grid,
.story-grid,
.trust-grid,
.format-items {
  display: grid;
  gap: 16px;
}

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

.value-grid article,
.story-grid article,
.trust-grid article,
.format-items article {
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 46px rgba(89, 30, 37, 0.07);
}

.value-grid article {
  min-height: 172px;
  padding: 28px;
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 24px;
  align-items: start;
}

.value-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 48, 54, 0.2);
  border-radius: 50%;
  color: var(--rose);
  font-weight: 600;
}

.process-section {
  background: var(--cream);
}

.process-rail {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.process-rail article {
  min-height: 290px;
  padding: 30px 26px;
  background: rgba(255, 250, 245, 0.76);
}

.process-cta {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.74);
  box-shadow: 0 18px 42px rgba(89, 30, 37, 0.08);
}

.process-cta p {
  margin-bottom: 0;
  font-size: 17px;
}

.process-rail span {
  width: 42px;
  height: 42px;
  margin-bottom: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--milk);
  font-weight: 600;
}

.story-section,
.trust-section,
.formats-section {
  padding: clamp(74px, 8vw, 124px) 0;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid article,
.trust-grid article {
  min-height: 196px;
  padding: 26px;
}

.styles-section {
  background: var(--pink);
}

.style-tabs {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
}

.tab-list {
  display: grid;
  gap: 10px;
}

.tab-list button {
  min-height: 70px;
  padding: 0 18px;
  border: 1px solid rgba(131, 48, 54, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.58);
  color: var(--wine-dark);
  text-align: left;
  cursor: pointer;
}

.tab-list button.active {
  background: var(--wine);
  color: var(--milk);
  box-shadow: 0 20px 44px rgba(131, 48, 54, 0.18);
}

.style-panel {
  min-height: 520px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 10px;
  background: rgba(255, 250, 245, 0.68);
  box-shadow: var(--shadow-soft);
}

.style-panel img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 24px 38px rgba(89, 30, 37, 0.2));
}

.format-card {
  padding: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  border-radius: 10px;
  background: var(--wine-dark);
  color: var(--milk);
  box-shadow: var(--shadow-strong);
}

.format-card h2,
.format-card .eyebrow,
.format-card p {
  color: var(--milk);
}

.format-card p {
  opacity: 0.82;
}

.format-items {
  grid-template-columns: repeat(3, 1fr);
}

.format-items article {
  padding: 24px;
  background: rgba(255, 250, 245, 0.08);
  border-color: rgba(255, 250, 245, 0.16);
  box-shadow: none;
}

.format-items span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 250, 245, 0.7);
  font-size: 14px;
}

.format-items strong {
  display: block;
  margin-bottom: 12px;
  color: var(--milk);
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1.02;
}

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

.faq-section {
  background: var(--cream);
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.76);
  box-shadow: 0 14px 34px rgba(89, 30, 37, 0.06);
}

summary {
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--wine-dark);
  font-weight: 600;
  cursor: pointer;
}

summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 24px;
  margin-bottom: 0;
}

.final-cta {
  margin-top: clamp(70px, 8vw, 118px);
  margin-bottom: clamp(58px, 7vw, 96px);
  padding: clamp(32px, 5vw, 62px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 26px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(89, 30, 37, 0.62);
  font-size: 14px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  min-height: 64px;
  padding: 10px 10px 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 250, 245, 0.26);
  border-radius: 999px;
  background: rgba(89, 30, 37, 0.94);
  color: var(--milk);
  box-shadow: 0 20px 52px rgba(89, 30, 37, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 250, 245, 0.68);
  font-size: 12px;
  font-weight: 500;
}

.mobile-sticky-cta strong {
  display: block;
  color: var(--milk);
  font-size: 16px;
  line-height: 1;
}

.mobile-sticky-cta button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--milk);
  color: var(--wine);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.service-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-sheet.is-open {
  pointer-events: auto;
  opacity: 1;
}

.service-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 12, 15, 0.42);
  backdrop-filter: blur(8px);
}

.service-panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 18px));
  margin: 0 auto 9px;
  padding: 26px 18px 18px;
  border: 1px solid rgba(255, 250, 245, 0.28);
  border-radius: 22px 22px 18px 18px;
  background: var(--paper);
  color: var(--wine-dark);
  box-shadow: 0 -18px 70px rgba(31, 12, 15, 0.28);
  transform: translateY(24px);
  transition: transform 240ms ease;
}

.service-sheet.is-open .service-panel {
  transform: translateY(0);
}

.service-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 50%;
  background: rgba(255, 236, 225, 0.62);
  color: var(--wine);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.service-panel h2 {
  margin-right: 46px;
  margin-bottom: 10px;
  font-size: 32px;
}

.service-panel p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.42;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-options a {
  min-height: 70px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(131, 48, 54, 0.14);
  border-radius: 14px;
  background: rgba(255, 246, 235, 0.72);
  box-shadow: 0 14px 28px rgba(89, 30, 37, 0.07);
}

.service-options span {
  color: var(--wine-dark);
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
}

.service-options strong {
  color: rgba(89, 30, 37, 0.64);
  font-size: 14px;
  font-weight: 500;
}

.service-note {
  min-height: 22px;
  margin: 14px 2px 0;
  color: rgba(89, 30, 37, 0.66);
  font-size: 13px;
}

.mobile-preview-only {
  background:
    linear-gradient(90deg, rgba(131, 48, 54, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
    #f3e9e5;
}

.mobile-preview-only main,
.mobile-preview-only .site-footer {
  width: min(430px, 100%);
  margin: 18px auto;
  background: var(--milk);
}

.mobile-preview-only main {
  box-shadow: 0 0 0 1px rgba(131, 48, 54, 0.07), 0 34px 90px rgba(89, 30, 37, 0.16);
  scroll-margin-top: 86px;
}

.mobile-preview-only .site-header {
  top: 8px;
  width: min(210px, calc(100% - 20px));
  min-height: 58px;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 8px 10px 8px 12px;
}

.mobile-preview-only .brand {
  width: 118px;
  height: 36px;
}

.mobile-preview-only .brand img {
  display: none;
}

.mobile-preview-only .brand span {
  display: block;
}

.mobile-preview-only .header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.mobile-preview-only .section-shell {
  width: min(calc(100% - 36px), var(--max));
}

.mobile-preview-only .hero,
.mobile-preview-only .value-section,
.mobile-preview-only .page-viewer,
.mobile-preview-only .format-card,
.mobile-preview-only .final-cta {
  grid-template-columns: 1fr;
}

.mobile-preview-only .hero {
  min-height: auto;
  padding-top: 18px;
  padding-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.mobile-preview-only .hero-copy {
  position: relative;
  z-index: 1;
}

.mobile-preview-only .hero-kicker {
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 20px;
  line-height: 1.04;
  letter-spacing: 0;
}

.mobile-preview-only .hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 10.2vw, 46px);
  line-height: 0.92;
}

.mobile-preview-only .hero-lead {
  margin-bottom: 18px;
  color: rgba(89, 30, 37, 0.88);
  font-size: 18px;
  line-height: 1.3;
}

.mobile-preview-only .hero-photo-card {
  margin-bottom: 20px;
  padding: 3px;
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(89, 30, 37, 0.12);
}

.mobile-preview-only .hero-photo-card img {
  border-radius: 19px;
}

.mobile-preview-only .hero-demo-button {
  min-height: 58px;
  border-radius: 16px;
  font-size: 21px;
}

.mobile-preview-only h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 10.2vw, 44px);
  line-height: 0.96;
}

.mobile-preview-only h2 {
  font-size: clamp(34px, 10vw, 48px);
}

.mobile-preview-only p,
.mobile-preview-only .lead {
  font-size: 16px;
}

.mobile-preview-only .lead {
  margin-bottom: 14px;
  line-height: 1.36;
}

.mobile-preview-only .hero .lead,
.mobile-preview-only .hero-book .book-toolbar {
  display: none;
}

.mobile-preview-only .button {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
}

.mobile-preview-only .hero-actions {
  margin-bottom: 0;
  display: grid;
  gap: 8px;
}

.mobile-preview-only .demo-link {
  justify-content: center;
}

.mobile-preview-only .hero-book {
  margin-top: 16px;
}

.mobile-preview-only .memory-step-gift > .hero-book {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.mobile-preview-only .flipbook-stage {
  min-height: 400px;
}

.mobile-preview-only .real-flip-stage {
  min-height: 392px;
}

.mobile-preview-only .real-book {
  width: min(278px, 73vw);
  height: 386px;
}

.mobile-preview-only .proof-list {
  gap: 8px;
}

.mobile-preview-only .proof-list li {
  padding: 8px 11px;
  font-size: 13px;
}

.mobile-preview-only .demo-phone {
  padding: 12px;
}

.mobile-preview-only .hero-page-stack {
  min-height: 320px;
}

.mobile-preview-only .hero-page-stack img,
.mobile-preview-only .page-stack img {
  width: min(220px, 68vw);
  max-height: 310px;
}

.mobile-preview-only .demo-controls {
  gap: 10px;
}

.mobile-preview-only .demo-controls .icon-button {
  width: 42px;
  height: 42px;
}

.mobile-preview-only .quick-meaning {
  margin-top: 0;
}

.mobile-preview-only .memory-flow {
  padding: 0 0 14px;
}

.mobile-preview-only .memory-flow-heading {
  margin-bottom: 20px;
}

.mobile-preview-only .memory-flow-heading h2 {
  font-size: clamp(32px, 9.4vw, 42px);
}

.mobile-preview-only .memory-steps {
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-preview-only .memory-steps[data-reveal] {
  opacity: 1;
  transform: none;
}

.mobile-preview-only .memory-steps::before {
  left: 33px;
}

.mobile-preview-only .memory-step {
  min-height: auto;
  padding: 14px;
  grid-template-columns: 42px 1fr;
  gap: 10px 12px;
}

.mobile-preview-only .memory-step-photos {
  grid-row: auto;
}

.mobile-preview-only .step-number {
  width: 38px;
  height: 38px;
}

.mobile-preview-only .step-copy h3 {
  font-size: 24px;
}

.mobile-preview-only .step-copy p {
  font-size: 15px;
}

.mobile-preview-only .memory-step-photos .step-copy p,
.mobile-preview-only .memory-step-stories .step-copy p,
.mobile-preview-only .memory-step-gift .step-copy p,
.mobile-preview-only .memory-step-gift .gift-route {
  display: none;
}

.mobile-preview-only .memory-step-gift .step-copy .step-note {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.mobile-preview-only .memory-step-gift::after {
  display: none;
}

.mobile-preview-only .memory-step-gift {
  padding-bottom: 14px;
}

.mobile-preview-only .memory-step-video {
  padding-bottom: 14px;
}

.mobile-preview-only .memory-step-video .step-note {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.mobile-preview-only .gift-video-card {
  grid-column: 1 / -1;
  width: min(306px, 100%);
  margin: 2px auto 0;
  padding: 6px;
  border-radius: 12px;
}

.mobile-preview-only .video-toggle {
  bottom: 30px;
  min-height: 46px;
  padding: 0 22px 0 20px;
  gap: 10px;
  font-size: 15px;
  box-shadow:
    0 14px 30px rgba(35, 8, 12, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mobile-preview-only .video-toggle-icon {
  width: 16px;
  height: 16px;
}

.mobile-preview-only .bottom-cta-button {
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.mobile-preview-only .portrait-pair,
.mobile-preview-only .memory-prompts,
.mobile-preview-only .gift-route {
  grid-column: 1 / -1;
}

.mobile-preview-only .memory-prompts {
  margin-top: 4px;
  color: rgba(89, 30, 37, 0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.mobile-preview-only .portrait-pair {
  min-height: 136px;
  grid-template-columns: 1fr 30px 1fr;
  margin-top: 4px;
}

.mobile-preview-only .portrait-card {
  gap: 6px;
}

.mobile-preview-only .portrait-card img {
  width: 112px;
  height: 112px;
  border-width: 6px;
}

.mobile-preview-only .portrait-card figcaption {
  max-width: 120px;
  text-align: center;
  white-space: normal;
}

.mobile-preview-only .portrait-heart {
  width: 30px;
  height: 30px;
  font-size: 20px;
}

.mobile-preview-only .gift-route span {
  font-size: 13px;
}

.mobile-preview-only .preview-band,
.mobile-preview-only .process-section,
.mobile-preview-only .styles-section,
.mobile-preview-only .faq-section {
  padding: 70px 12px;
}

.mobile-preview-only .section-heading {
  margin-bottom: 30px;
}

.mobile-preview-only .demo-contents,
.mobile-preview-only .process-rail,
.mobile-preview-only .story-grid,
.mobile-preview-only .trust-grid,
.mobile-preview-only .format-items,
.mobile-preview-only .tab-list,
.mobile-preview-only .style-tabs,
.mobile-preview-only .style-panel {
  grid-template-columns: 1fr;
}

.mobile-preview-only .process-rail article {
  min-height: 220px;
}

.mobile-preview-only .process-rail span,
.mobile-preview-only .demo-contents span {
  margin-bottom: 28px;
}

.mobile-preview-only .process-cta {
  flex-direction: column;
  align-items: flex-start;
}

.mobile-preview-only .style-panel {
  min-height: auto;
  padding: 16px;
}

.mobile-preview-only .format-card {
  padding: 28px 18px;
}

.mobile-preview-only .final-cta {
  margin-top: 70px;
  margin-bottom: 58px;
  padding: 30px 18px;
}

.mobile-preview-only .mobile-sticky-cta {
  left: 50%;
  right: auto;
  bottom: 12px;
  width: min(406px, calc(100% - 24px));
  display: flex;
  transform: translateX(-50%) translateY(18px);
}

.mobile-preview-only .mobile-sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.mobile-preview-only .site-footer {
  padding: 26px 12px 106px;
  flex-direction: column;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-preview-only .hero-copy.visible {
  transform: none;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 160px 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .value-section,
  .page-viewer,
  .format-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .value-copy {
    position: static;
  }

  .process-rail,
  .story-grid,
  .trust-grid,
  .memory-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .memory-step-photos {
    grid-row: auto;
  }

  .process-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .style-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .style-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(90deg, rgba(131, 48, 54, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
      var(--milk);
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 20px), var(--max));
    min-height: 58px;
    grid-template-columns: 126px auto;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    width: 118px;
    height: 36px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

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

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(40px, 11.4vw, 58px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  p,
  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
  }

  .proof-list {
    gap: 8px;
  }

  .proof-list li {
    padding: 8px 11px;
    font-size: 13px;
  }

  .mobile-start-card {
    display: block;
  }

  .hero-stage {
    min-height: 360px;
    margin-top: 18px;
  }

  .premium-book {
    width: 100%;
    min-height: 264px;
    padding: 14px;
  }

  .book-page {
    min-height: 236px;
  }

  .book-page-left {
    padding: 32px 20px;
  }

  .book-page-left strong {
    font-size: 20px;
  }

  .book-page-left p {
    font-size: 13px;
  }

  .floating-page {
    width: 84px;
  }

  .cover-card {
    width: 84px;
    right: 14px;
    bottom: 16px;
  }

  .floating-page-one {
    top: 22px;
    right: 4px;
  }

  .floating-page-two {
    left: 0;
    bottom: 32px;
  }

  .preview-band,
  .process-section,
  .styles-section,
  .faq-section {
    padding: 70px 12px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .page-stack {
    min-height: 430px;
  }

  .page-stack img {
    width: min(280px, 80vw);
    max-height: 410px;
  }

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

  .value-grid span {
    margin-bottom: 22px;
  }

  .process-rail,
  .story-grid,
  .trust-grid,
  .memory-steps,
  .format-items {
    grid-template-columns: 1fr;
  }

  .memory-flow {
    padding-top: 48px;
  }

  .memory-step {
    min-height: auto;
    padding: 20px;
    grid-template-columns: 46px 1fr;
  }

  .memory-step-photos {
    grid-row: auto;
  }

  .portrait-pair,
  .memory-prompts,
  .gift-route {
    grid-column: 1 / -1;
  }

  .portrait-pair {
    min-height: 176px;
    grid-template-columns: 1fr 32px 1fr;
  }

  .portrait-card img {
    width: 118px;
    height: 118px;
  }

  .process-rail article {
    min-height: 220px;
  }

  .process-rail span {
    margin-bottom: 34px;
  }

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

  .style-panel {
    min-height: auto;
    padding: 16px;
  }

  .format-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* SEO-секции: форматы/цены и FAQ */
.seo-formats h2,
.seo-faq h2 { font-size: 26px; line-height: 1.2; margin: 0 0 18px; color: #833036; }
.seo-format-cards { display: grid; gap: 16px; }
.seo-format-card { background: #fffdf9; border: 1px solid #f0dfe0; border-radius: 18px; padding: 22px; }
.seo-format-card h3 { margin: 0 0 6px; font-size: 19px; color: #591e25; }
.seo-format-price { font-size: 26px; font-weight: 700; color: #833036; margin: 0 0 10px; }
.seo-format-card p { margin: 0; line-height: 1.5; }
.seo-formats-note { margin: 16px 0 0; font-size: 14px; opacity: 0.8; }
.seo-faq details { border-bottom: 1px solid #f0dfe0; padding: 14px 0; }
.seo-faq details:first-of-type { border-top: 1px solid #f0dfe0; }
.seo-faq summary { font-weight: 600; cursor: pointer; color: #591e25; list-style: none; }
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary::after { content: "+"; float: right; color: #833036; font-weight: 700; }
.seo-faq details[open] summary::after { content: "\2013"; }
.seo-faq details p { margin: 10px 0 0; line-height: 1.5; }

/* SEO-перелинковка */
.seo-related h2 { font-size: 22px; color: #833036; margin: 0 0 12px; }
.seo-related ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.seo-related a { color: #833036; text-decoration: none; font-weight: 600; }
.seo-related a:hover { text-decoration: underline; }
