@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;
  --sage: #a86a64;
  --sage-dark: #5a2a30;
  --honey: #c89456;
  --paper: #fffdf9;
  --ink-soft: rgba(89, 30, 37, 0.76);
  --line: rgba(131, 48, 54, 0.14);
  --shadow: 0 28px 70px rgba(89, 30, 37, 0.14);
  --shadow-strong: 0 34px 92px rgba(89, 30, 37, 0.22);
  --radius: 8px;
  --shell: 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.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(96, 124, 109, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--milk);
  color: var(--wine-dark);
  font-family: var(--body);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      105deg,
      rgba(89, 30, 37, 0.025) 0 1px,
      transparent 1px 9px
    );
  opacity: 0.34;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(43px, 6.5vw, 92px);
  font-weight: 600;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

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

p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(calc(100% - 32px), var(--shell));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: 176px 1fr auto;
  gap: 22px;
  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.1);
  backdrop-filter: blur(18px);
}

.brand {
  width: 184px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.brand-emblem {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 10px 22px rgba(131, 48, 54, 0.18);
}

.brand-emblem img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.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,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--milk);
  box-shadow: 0 16px 34px rgba(131, 48, 54, 0.23);
}

.button {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  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 48px rgba(131, 48, 54, 0.26);
}

.button-secondary {
  border: 1px solid rgba(131, 48, 54, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--wine-dark);
}

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

.hero {
  min-height: calc(100vh - 86px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(38px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(89, 30, 37, 0.86);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

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

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

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

.trust-list li {
  min-height: 38px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(89, 30, 37, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.photo-hero {
  position: relative;
  width: min(620px, 100%);
  min-height: 650px;
  isolation: isolate;
}

.photo-hero::before {
  content: "";
  position: absolute;
  inset: 64px 22px 58px 64px;
  z-index: -2;
  border: 1px solid rgba(131, 48, 54, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 236, 225, 0.56)),
    var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.hero-photo-main,
.hero-photo-small,
.preview-photo-card,
.photo-proof-grid figure {
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo-main {
  position: relative;
  z-index: 2;
  width: min(430px, 74%);
  margin: 26px 18px 0 auto;
  padding: 10px;
  transform: rotate(2deg);
}

.hero-photo-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
}

.hero-photo-main figcaption {
  margin: 10px 4px 2px;
  color: rgba(89, 30, 37, 0.78);
  font-size: 14px;
  line-height: 1.32;
}

.hero-photo-small {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 7px;
}

.hero-photo-small img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
}

.hero-photo-small-one {
  left: 4px;
  bottom: 74px;
  transform: rotate(-7deg);
}

.hero-photo-small-two {
  right: 0;
  bottom: 4px;
  width: 188px;
  transform: rotate(7deg);
}

.desk-scene {
  position: relative;
  width: min(620px, 100%);
  min-height: 610px;
  isolation: isolate;
}

.desk-scene::before {
  content: "";
  position: absolute;
  inset: 34px 18px 58px;
  z-index: -2;
  border: 1px solid rgba(131, 48, 54, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 236, 225, 0.54)),
    var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.desk-scene::after {
  content: "";
  position: absolute;
  left: 78px;
  right: 70px;
  bottom: 46px;
  height: 28px;
  z-index: -3;
  border-radius: 50%;
  background: rgba(89, 30, 37, 0.18);
  filter: blur(18px);
}

.paper-note {
  position: absolute;
  z-index: 4;
  width: 190px;
  min-height: 118px;
  padding: 16px 17px;
  border: 1px solid rgba(89, 30, 37, 0.11);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(89, 30, 37, 0.12);
}

.paper-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.paper-note strong {
  display: block;
  color: var(--wine-dark);
  font-family: var(--heading);
  font-size: 20px;
  line-height: 1.08;
}

.note-one {
  top: 28px;
  left: 20px;
  transform: rotate(-7deg);
}

.note-two {
  top: 168px;
  right: 4px;
  background: #f8f0df;
  transform: rotate(5deg);
}

.note-three {
  left: 36px;
  bottom: 92px;
  background: #f5e8e8;
  transform: rotate(4deg);
}

.memory-thread {
  position: absolute;
  inset: 80px 92px 94px;
  z-index: 1;
  border: 2px solid rgba(193, 89, 102, 0.24);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.memory-thread::before,
.memory-thread::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(193, 89, 102, 0.1);
}

.memory-thread::before {
  top: 9px;
  right: 58px;
}

.memory-thread::after {
  left: 34px;
  bottom: 42px;
}

.book-scene {
  position: absolute;
  right: 26px;
  bottom: 32px;
  z-index: 3;
  width: min(460px, 76vw);
  margin: 0;
}

.friend-book {
  position: relative;
  width: 100%;
  min-height: 370px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  border-radius: 8px;
  background: #eee4da;
  box-shadow: 0 30px 56px rgba(89, 30, 37, 0.22);
  transform: rotate(-4deg);
}

.friend-book::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(89, 30, 37, 0.1);
  border-radius: 6px;
  pointer-events: none;
}

.friend-page {
  min-height: 334px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--paper);
  box-shadow: inset 0 0 24px rgba(89, 30, 37, 0.06);
}

.friend-page-left {
  border-radius: 5px 0 0 5px;
}

.friend-page-right {
  border-radius: 0 5px 5px 0;
}

.friend-spine {
  background: linear-gradient(
    90deg,
    rgba(89, 30, 37, 0.13),
    rgba(255, 255, 255, 0.5),
    rgba(89, 30, 37, 0.15)
  );
}

.friend-page p {
  margin: auto 0 0;
  color: var(--wine-dark);
  font-family: var(--heading);
  font-size: 19px;
  line-height: 1.12;
  text-align: center;
}

.page-art {
  position: relative;
  height: 206px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #f6dfc7 0 44%, #e7c6b6 44% 71%, #7f4a43 71% 100%);
}

.page-art::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 64px;
  border-radius: 32px 32px 7px 7px;
  background: rgba(255, 250, 245, 0.55);
}

.page-art .person {
  bottom: 46px;
  transform: scale(0.82);
  transform-origin: bottom center;
}

.page-art .person-left {
  left: 46px;
}

.page-art .person-right {
  right: 46px;
}

.page-art .table {
  left: 34px;
  right: 34px;
  bottom: 24px;
  height: 32px;
}

.page-art-city {
  background:
    linear-gradient(180deg, #f7e2d8 0 48%, #e8d0aa 48% 72%, #a8565f 72% 100%);
}

.page-art-city::before {
  left: 22px;
  right: 22px;
  top: 20px;
  height: 80px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 250, 245, 0.7) 18% 22%, transparent 22% 46%, rgba(255, 250, 245, 0.7) 46% 50%, transparent 50% 74%, rgba(255, 250, 245, 0.7) 74% 78%, transparent 78%),
    #cf9a8f;
}

.road {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82px;
  height: 86px;
  background: rgba(89, 30, 37, 0.18);
  clip-path: polygon(37% 0, 63% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.book-cover {
  position: absolute;
  left: 26px;
  top: 30px;
  width: 118px;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(89, 30, 37, 0.25);
  transform: rotate(-9deg);
}

.book-scene figcaption {
  width: min(320px, 78%);
  margin: -8px 0 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(131, 48, 54, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 40px rgba(89, 30, 37, 0.11);
  color: rgba(89, 30, 37, 0.82);
  font-size: 15px;
  line-height: 1.35;
}

.idea-strip {
  padding: clamp(52px, 6vw, 78px) 0;
  background: var(--wine);
}

.idea-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.1fr 0.86fr;
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.idea-strip h2,
.idea-strip p,
.idea-strip .strip-kicker {
  color: var(--milk);
}

.idea-strip h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 58px);
}

.idea-strip p:last-child {
  margin-bottom: 0;
  opacity: 0.84;
}

.why-section,
.steps-section,
.faq-section,
.final-cta {
  padding: clamp(72px, 8vw, 118px) 0;
}

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

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

.section-heading p:last-child {
  margin-bottom: 0;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reason-card,
.step-item,
.faq-item {
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 236, 225, 0.48)),
    var(--paper);
  box-shadow: 0 20px 52px rgba(89, 30, 37, 0.08);
}

.reason-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.reason-number {
  margin-bottom: auto;
  color: rgba(193, 89, 102, 0.56);
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.reason-card p,
.step-item p,
.faq-item p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.48;
}

.preview-section {
  padding: clamp(76px, 8vw, 126px) 0;
  background:
    linear-gradient(90deg, rgba(96, 124, 109, 0.08) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--peach);
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

.preview-copy p:not(.eyebrow) {
  max-width: 560px;
}

.preview-photo-card {
  position: relative;
  min-height: 620px;
  padding: 14px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 236, 225, 0.58)),
    var(--paper);
}

.preview-photo-card figure {
  min-height: 0;
  margin: 0;
}

.preview-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.preview-photo-copy {
  position: relative;
  width: calc(100% - 34px);
  margin: -68px auto 0;
  padding: 22px;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 42px rgba(89, 30, 37, 0.12);
}

.preview-photo-copy h3 {
  font-size: clamp(27px, 3vw, 38px);
}

.preview-photo-copy p:last-child {
  margin-bottom: 0;
  font-size: 16px;
}

.scene-picker {
  width: min(560px, 100%);
  margin-top: 26px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border: 1px solid rgba(131, 48, 54, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 16px 40px rgba(89, 30, 37, 0.09);
}

.scene-picker button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(89, 30, 37, 0.78);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.scene-picker button.is-active {
  background: var(--wine);
  color: var(--milk);
  box-shadow: 0 10px 24px rgba(131, 48, 54, 0.2);
}

.photo-proof-section {
  padding: clamp(70px, 8vw, 118px) 0;
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.photo-proof-grid figure {
  margin: 0;
}

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

.photo-proof-large {
  grid-row: span 2;
}

.sample-book {
  position: relative;
  min-height: 610px;
}

.sample-page {
  position: absolute;
  width: 318px;
  min-height: 462px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow-strong);
}

.sample-cover {
  left: 34px;
  top: 58px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.1), rgba(255, 250, 245, 0)),
    var(--wine);
  color: var(--milk);
  transform: rotate(-8deg);
}

.sample-cover img {
  width: 92px;
  margin-bottom: 26px;
  opacity: 0.96;
}

.sample-cover p {
  margin-bottom: 10px;
  color: rgba(255, 250, 245, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.sample-cover h3 {
  max-width: 230px;
  color: var(--milk);
  font-size: 36px;
}

.sample-cover span {
  color: rgba(255, 250, 245, 0.76);
  font-size: 15px;
}

.sample-story {
  right: 22px;
  top: 16px;
  min-height: 548px;
  transform: rotate(4deg);
}

.sample-story h3 {
  font-size: 30px;
  line-height: 1.03;
}

.sample-story p {
  color: rgba(89, 30, 37, 0.78);
  font-size: 16px;
}

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

.mini-illustration {
  position: relative;
  height: 230px;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(131, 48, 54, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #f7dfc9 0 42%, #eac6b9 42% 70%, #7f4a43 70% 100%);
}

.mini-illustration::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  height: 72px;
  border-radius: 36px 36px 8px 8px;
  background: rgba(255, 250, 245, 0.58);
  box-shadow: inset 0 0 0 1px rgba(131, 48, 54, 0.08);
}

.person {
  position: absolute;
  bottom: 58px;
  width: 54px;
  height: 92px;
  border-radius: 28px 28px 16px 16px;
  background: var(--sage);
  box-shadow: inset 0 22px 0 rgba(255, 250, 245, 0.25);
}

.person::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0c9a9;
  box-shadow: 0 -10px 0 #4d302a;
}

.person-left {
  left: 76px;
}

.person-right {
  right: 78px;
  background: var(--rose);
}

.person-right::before {
  box-shadow: 0 -10px 0 #7b4b2d;
}

.table {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 34px;
  height: 38px;
  border-radius: 999px;
  background: #f5d9b8;
  box-shadow: 0 14px 0 rgba(89, 30, 37, 0.12);
}

.spark {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 250, 245, 0.9);
  transform: rotate(45deg);
}

.spark-one {
  left: 48px;
  top: 42px;
}

.spark-two {
  right: 56px;
  top: 82px;
}

.mini-illustration.scene-trip {
  background:
    linear-gradient(180deg, #f7e2d8 0 48%, #e8d0aa 48% 72%, #a8565f 72% 100%);
}

.mini-illustration.scene-trip::before {
  left: 34px;
  right: 34px;
  top: 28px;
  height: 86px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 250, 245, 0.72) 18% 22%, transparent 22% 46%, rgba(255, 250, 245, 0.72) 46% 50%, transparent 50% 74%, rgba(255, 250, 245, 0.72) 74% 78%, transparent 78%),
    #8fae9b;
}

.mini-illustration.scene-support {
  background:
    linear-gradient(180deg, #e8d8d3 0 52%, #f1dcc8 52% 78%, #6e3f45 78% 100%);
}

.mini-illustration.scene-support .person-left {
  left: 94px;
  background: var(--honey);
}

.mini-illustration.scene-support .person-right {
  right: 94px;
}

.mini-illustration.scene-just {
  background:
    linear-gradient(180deg, #f5ead8 0 44%, #e6c9b4 44% 74%, #87685a 74% 100%);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-item {
  min-height: 250px;
  padding: 24px;
}

.step-item span {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--milk);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 600;
}

.occasion-section {
  padding: clamp(64px, 7vw, 98px) 0;
  background: var(--sage-dark);
}

.occasion-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.occasion-section h2,
.occasion-section p,
.occasion-section .eyebrow {
  color: var(--milk);
}

.occasion-copy h2 {
  margin-bottom: 0;
}

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

.occasion-tags li {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 245, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.1);
  color: var(--milk);
  font-size: 16px;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  min-height: 200px;
  padding: 24px;
}

.final-cta {
  padding-top: clamp(42px, 5vw, 72px);
}

.final-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  justify-items: start;
  align-content: center;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.08), rgba(255, 250, 245, 0)),
    var(--wine);
  box-shadow: var(--shadow-strong);
}

.final-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -88px;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 245, 0.24);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      closest-side,
      transparent 0 15px,
      rgba(255, 250, 245, 0.12) 16px 18px,
      transparent 19px 30px
    );
  opacity: 0.68;
}

.final-panel > * {
  position: relative;
  z-index: 1;
}

.final-panel img {
  width: 74px;
  margin-bottom: 22px;
}

.final-panel h2,
.final-panel p,
.final-panel .eyebrow {
  color: var(--milk);
}

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

.final-panel p:not(.eyebrow) {
  max-width: 620px;
  opacity: 0.84;
}

.final-panel .button-primary {
  margin-top: 8px;
  background: var(--milk);
  color: var(--wine);
}

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

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

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

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

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

  .main-nav {
    display: none;
  }

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

  .hero,
  .preview-layout,
  .occasion-layout,
  .idea-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .photo-hero {
    min-height: 590px;
  }

  .hero-photo-main {
    width: min(430px, 76%);
  }

  .idea-grid {
    gap: 14px;
  }

  .reason-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .step-item {
    min-height: auto;
  }

  .reason-number,
  .step-item span {
    margin-bottom: 22px;
  }

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

  .sample-book {
    min-height: 580px;
  }

  .sample-cover {
    left: 0;
  }

  .sample-story {
    right: 0;
  }

  .photo-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--shell));
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    width: 158px;
    min-height: 34px;
    font-size: 14px;
  }

  .brand-emblem {
    width: 30px;
    height: 30px;
  }

  .brand-emblem img {
    width: 20px;
    height: 20px;
  }

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

  h1 {
    font-size: clamp(34px, 10.3vw, 42px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(31px, 9.6vw, 44px);
  }

  p {
    font-size: 16px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 26px;
  }

  .hero-lead {
    margin-bottom: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

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

  .hero .button-secondary {
    display: none;
  }

  .trust-list {
    display: none;
  }

  .hero-art {
    min-height: 560px;
    margin-top: 14px;
  }

  .photo-hero {
    width: 100%;
    min-height: 552px;
  }

  .photo-hero::before {
    inset: 36px 8px 44px;
  }

  .hero-photo-main {
    width: min(292px, 78%);
    margin: 0 0 0 auto;
    padding: 7px;
  }

  .hero-photo-main figcaption {
    font-size: 12px;
  }

  .hero-photo-small {
    width: 142px;
    padding: 5px;
  }

  .hero-photo-small-one {
    left: 0;
    bottom: 76px;
  }

  .hero-photo-small-two {
    right: 4px;
    bottom: 0;
    width: 132px;
  }

  .desk-scene {
    min-height: 510px;
  }

  .desk-scene::before {
    inset: 62px 0 52px;
  }

  .paper-note {
    width: 158px;
    min-height: 98px;
    padding: 13px;
  }

  .paper-note strong {
    font-size: 16px;
  }

  .note-one {
    top: 8px;
    left: 0;
  }

  .note-two {
    top: 120px;
    right: 0;
  }

  .note-three {
    left: 2px;
    bottom: 68px;
  }

  .book-scene {
    right: 0;
    bottom: 54px;
    width: min(380px, 94vw);
  }

  .friend-book {
    width: calc(100% - 18px);
    margin: 0 auto;
    transform: rotate(-3deg);
  }

  .book-cover {
    width: 90px;
  }

  .book-scene figcaption {
    width: 82%;
    font-size: 14px;
  }

  .idea-strip {
    padding: 42px 0;
  }

  .scene-picker {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
  }

  .preview-photo-card {
    min-height: auto;
    padding: 10px;
  }

  .preview-photo-card img {
    min-height: 360px;
    max-height: 430px;
  }

  .preview-photo-copy {
    width: calc(100% - 16px);
    margin-top: -44px;
    padding: 18px;
  }

  .photo-proof-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .photo-proof-large {
    grid-row: span 1;
  }

  .sample-book {
    min-height: 700px;
  }

  .sample-page {
    width: min(308px, 88vw);
    min-height: 438px;
    padding: 22px;
  }

  .sample-cover {
    left: 8px;
    top: 0;
    transform: rotate(-4deg);
  }

  .sample-story {
    right: 0;
    top: 176px;
    min-height: 504px;
    transform: rotate(3deg);
  }

  .sample-story h3 {
    font-size: 26px;
  }

  .mini-illustration {
    height: 198px;
  }

  .occasion-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .occasion-tags li {
    border-radius: var(--radius);
  }

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

  .final-panel {
    min-height: auto;
    padding: 32px 22px;
  }
}

@media (max-width: 420px) {
  .header-cta {
    max-width: 116px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-art {
    min-height: 540px;
  }

  .photo-hero {
    min-height: 536px;
  }

  .paper-note {
    width: 148px;
  }

  .paper-note strong {
    font-size: 15px;
  }

  .book-scene {
    bottom: 52px;
  }

  .book-scene figcaption {
    width: 88%;
  }
}

body.is-forced-mobile {
  --forced-mobile-shell: 430px;
}

body.is-forced-mobile .section-shell {
  width: min(calc(100% - 28px), var(--forced-mobile-shell));
}

body.is-forced-mobile .site-header {
  top: 10px;
  width: min(calc(100% - 20px), var(--forced-mobile-shell));
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 8px 8px 12px;
}

body.is-forced-mobile .main-nav {
  display: none;
}

body.is-forced-mobile .brand {
  width: 158px;
  min-height: 34px;
  font-size: 14px;
}

body.is-forced-mobile .brand-emblem {
  width: 30px;
  height: 30px;
}

body.is-forced-mobile .brand-emblem img {
  width: 20px;
  height: 20px;
}

body.is-forced-mobile .header-cta {
  max-width: 116px;
  min-height: 40px;
  padding: 0 14px;
  justify-self: end;
  font-size: 14px;
}

body.is-forced-mobile h1 {
  font-size: clamp(34px, 10.3vw, 42px);
  line-height: 1;
}

body.is-forced-mobile h2 {
  font-size: clamp(31px, 9.6vw, 44px);
}

body.is-forced-mobile p {
  font-size: 16px;
}

body.is-forced-mobile .hero,
body.is-forced-mobile .preview-layout,
body.is-forced-mobile .occasion-layout,
body.is-forced-mobile .idea-grid {
  grid-template-columns: 1fr;
}

body.is-forced-mobile .hero {
  min-height: auto;
  padding-top: 42px;
  padding-bottom: 26px;
}

body.is-forced-mobile .hero-lead {
  margin-bottom: 22px;
  font-size: 17px;
}

body.is-forced-mobile .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

body.is-forced-mobile .button {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
}

body.is-forced-mobile .hero .button-secondary,
body.is-forced-mobile .trust-list {
  display: none;
}

body.is-forced-mobile .hero-art {
  min-height: 540px;
  margin-top: 14px;
}

body.is-forced-mobile .photo-hero {
  width: 100%;
  min-height: 536px;
}

body.is-forced-mobile .photo-hero::before {
  inset: 36px 8px 44px;
}

body.is-forced-mobile .hero-photo-main {
  width: min(292px, 78%);
  margin: 0 0 0 auto;
  padding: 7px;
}

body.is-forced-mobile .hero-photo-small {
  width: 142px;
  padding: 5px;
}

body.is-forced-mobile .hero-photo-small-one {
  left: 0;
  bottom: 76px;
}

body.is-forced-mobile .hero-photo-small-two {
  right: 4px;
  bottom: 0;
  width: 132px;
}

body.is-forced-mobile .idea-strip {
  padding: 42px 0;
}

body.is-forced-mobile .idea-grid {
  gap: 14px;
}

body.is-forced-mobile .reason-grid,
body.is-forced-mobile .steps-list,
body.is-forced-mobile .faq-grid {
  grid-template-columns: 1fr;
}

body.is-forced-mobile .reason-card,
body.is-forced-mobile .step-item {
  min-height: auto;
}

body.is-forced-mobile .reason-number,
body.is-forced-mobile .step-item span {
  margin-bottom: 22px;
}

body.is-forced-mobile .scene-picker {
  grid-template-columns: repeat(2, 1fr);
  border-radius: 18px;
}

body.is-forced-mobile .preview-layout {
  align-items: start;
}

body.is-forced-mobile .preview-photo-card {
  min-height: auto;
  padding: 10px;
}

body.is-forced-mobile .preview-photo-card img {
  min-height: 360px;
  max-height: 430px;
}

body.is-forced-mobile .preview-photo-copy {
  width: calc(100% - 16px);
  margin-top: -44px;
  padding: 18px;
}

body.is-forced-mobile .photo-proof-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: 360px;
}

body.is-forced-mobile .photo-proof-large {
  grid-row: span 1;
}

body.is-forced-mobile .occasion-tags {
  display: grid;
  grid-template-columns: 1fr;
}

body.is-forced-mobile .occasion-tags li {
  border-radius: var(--radius);
}

body.is-forced-mobile .final-panel {
  min-height: auto;
  padding: 32px 22px;
}

html[data-view="desktop"] {
  min-width: 1180px;
}

body.is-forced-desktop {
  overflow-x: auto;
}

body.is-forced-desktop .section-shell {
  width: min(calc(100% - 40px), var(--shell));
}

body.is-forced-desktop .site-header {
  top: 14px;
  width: min(calc(100% - 32px), var(--shell));
  min-height: 66px;
  grid-template-columns: 176px 1fr auto;
  gap: 22px;
  padding: 10px 12px 10px 18px;
}

body.is-forced-desktop .main-nav {
  display: flex;
}

body.is-forced-desktop .brand {
  width: 184px;
  min-height: 42px;
  font-size: 16px;
}

body.is-forced-desktop .brand-emblem {
  width: 34px;
  height: 34px;
}

body.is-forced-desktop .brand-emblem img {
  width: 22px;
  height: 22px;
}

body.is-forced-desktop .header-cta {
  max-width: none;
  min-height: 44px;
  padding: 0 20px;
  justify-self: auto;
  font-size: 16px;
}

body.is-forced-desktop h1 {
  font-size: clamp(43px, 6.5vw, 92px);
  line-height: 0.95;
}

body.is-forced-desktop h2 {
  font-size: clamp(34px, 5vw, 66px);
}

body.is-forced-desktop p {
  font-size: 18px;
}

body.is-forced-desktop .hero {
  min-height: calc(100vh - 86px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(38px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
}

body.is-forced-desktop .hero-lead {
  margin-bottom: 30px;
  font-size: clamp(19px, 2vw, 24px);
}

body.is-forced-desktop .hero-actions {
  display: flex;
  grid-template-columns: none;
  margin-bottom: 28px;
}

body.is-forced-desktop .button {
  width: auto;
  min-height: 60px;
  padding: 0 28px;
}

body.is-forced-desktop .hero .button-secondary {
  display: inline-flex;
}

body.is-forced-desktop .trust-list {
  display: flex;
}

body.is-forced-desktop .hero-art {
  min-height: 630px;
  margin-top: 0;
}

body.is-forced-desktop .photo-hero {
  width: min(620px, 100%);
  min-height: 650px;
}

body.is-forced-desktop .photo-hero::before {
  inset: 64px 22px 58px 64px;
}

body.is-forced-desktop .hero-photo-main {
  width: min(430px, 74%);
  margin: 26px 18px 0 auto;
  padding: 10px;
}

body.is-forced-desktop .hero-photo-small {
  width: 210px;
  padding: 7px;
}

body.is-forced-desktop .hero-photo-small-one {
  left: 4px;
  bottom: 74px;
}

body.is-forced-desktop .hero-photo-small-two {
  right: 0;
  bottom: 4px;
  width: 188px;
}

body.is-forced-desktop .idea-grid {
  grid-template-columns: 0.42fr 1.1fr 0.86fr;
  gap: clamp(20px, 3vw, 42px);
}

body.is-forced-desktop .reason-grid,
body.is-forced-desktop .steps-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.is-forced-desktop .reason-card {
  min-height: 260px;
}

body.is-forced-desktop .step-item {
  min-height: 250px;
}

body.is-forced-desktop .reason-number {
  margin-bottom: auto;
}

body.is-forced-desktop .step-item span {
  margin-bottom: 42px;
}

body.is-forced-desktop .preview-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
}

body.is-forced-desktop .scene-picker {
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
}

body.is-forced-desktop .preview-photo-card {
  min-height: 620px;
  padding: 14px;
}

body.is-forced-desktop .preview-photo-card img {
  min-height: 420px;
  max-height: 520px;
}

body.is-forced-desktop .preview-photo-copy {
  width: calc(100% - 34px);
  margin-top: -68px;
  padding: 22px;
}

body.is-forced-desktop .photo-proof-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
}

body.is-forced-desktop .photo-proof-large {
  grid-row: span 2;
}

body.is-forced-desktop .occasion-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

body.is-forced-desktop .occasion-tags {
  display: flex;
  grid-template-columns: none;
}

body.is-forced-desktop .occasion-tags li {
  border-radius: 999px;
}

body.is-forced-desktop .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-forced-desktop .final-panel {
  min-height: 430px;
  padding: clamp(34px, 5vw, 64px);
}

/* 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; }
