:root {
  --ink: #2f2926;
  --muted: #746b67;
  --paper: #fff8f6;
  --paper-strong: #fffdfb;
  --green: #425f56;
  --green-soft: #edf5f1;
  --rose: #b8657a;
  --rose-soft: #fff0f3;
  --gold: #c7a56b;
  --line: #eadfd9;
  --plum: #5a414c;
  --shadow: 0 24px 70px rgba(66, 95, 86, 0.16);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  interpolate-size: allow-keywords;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-optical-sizing: auto;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  color: #ffffff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 10px 30px rgba(66, 95, 86, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  width: max-content;
}

.brand-logo {
  display: block;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.brand-logo-full {
  display: none;
  width: clamp(172px, 16vw, 220px);
  height: 52px;
}

.brand-logo-mark,
.brand-logo-light-mark {
  display: none;
  width: 46px;
  height: 46px;
}

.brand-logo-light-mark {
  display: block;
}

.site-header.is-scrolled .brand-logo-full {
  display: block;
}

.site-header.is-scrolled .brand-logo-light-mark {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .main-nav {
  border-color: var(--line);
  background: #ffffff;
}

.main-nav a,
.header-cta,
.language-link {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  background: var(--green-soft);
}

.header-cta {
  color: var(--ink);
  background: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.language-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.language-link:hover,
.language-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .header-cta {
  color: #ffffff;
  background: var(--rose);
}

.site-header.is-scrolled .language-link {
  border-color: var(--line);
  color: var(--green);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(47, 41, 38, 0.9) 0%, rgba(47, 41, 38, 0.72) 36%, rgba(90, 65, 76, 0.18) 69%, rgba(47, 41, 38, 0.1) 100%),
    linear-gradient(0deg, rgba(47, 41, 38, 0.48), rgba(47, 41, 38, 0.06) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: 86vh;
  padding: 112px 32px 56px;
  margin-left: max(32px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 720px;
  font-size: 64px;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.65;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  padding: 7px 12px 7px 8px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.13);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(47, 41, 38, 0.2);
  backdrop-filter: blur(14px);
}

.rating-avatars {
  display: flex;
  align-items: center;
  padding-right: 2px;
}

.rating-avatar {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 253, 251, 0.94);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 18px rgba(47, 41, 38, 0.24);
}

.rating-avatar + .rating-avatar {
  margin-left: -9px;
}

.avatar-one {
  background-image: url("assets/testimonial-brunch-no-phone.jpg");
}

.avatar-two {
  background-image: url("assets/testimonial-slideshow.jpg");
}

.avatar-three {
  background-image: url("assets/testimonial-wedding-couple-classic.jpg");
}

.rating-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0;
}

.hero-rating strong {
  font-size: 14px;
  font-weight: 900;
}

.hero-rating small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(184, 101, 122, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a95870;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.section .button-secondary,
.pricing .button-secondary {
  color: var(--green);
  border-color: var(--green);
  background: #ffffff;
}

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

.trust-list li {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero-memory-flow {
  position: absolute;
  z-index: 1;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 70px;
  width: 360px;
  height: 470px;
  pointer-events: none;
}

.flow-phone {
  position: absolute;
  right: 38px;
  bottom: 0;
  width: 252px;
  min-height: 410px;
  padding: 12px;
  overflow: hidden;
  border: 8px solid rgba(47, 41, 38, 0.94);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 253, 251, 0.98), rgba(255, 248, 246, 0.94)),
    var(--paper-strong);
  box-shadow:
    0 34px 90px rgba(47, 41, 38, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.flow-phone::before {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: rgba(47, 41, 38, 0.2);
  content: "";
  transform: translateX(-50%);
}

.flow-phone::after {
  position: absolute;
  top: 0;
  right: 24px;
  width: 78px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  opacity: 0.55;
  transform: skewX(-12deg);
}

.flow-phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
  padding: 7px 6px 0;
}

.flow-signal {
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--green) 0 2px, transparent 2px) 0 50% / 8px 8px,
    radial-gradient(circle, var(--green) 0 2px, transparent 2px) 9px 50% / 8px 8px,
    radial-gradient(circle, var(--green) 0 2px, transparent 2px) 18px 50% / 8px 8px;
  opacity: 0.75;
}

.flow-live-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--rose);
  background: var(--rose-soft);
  font-size: 10px;
  font-weight: 900;
}

.flow-phone-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}

.flow-phone-header span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.flow-phone-header strong {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
}

.flow-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.flow-stats span {
  display: grid;
  gap: 2px;
  min-height: 44px;
  padding: 7px 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.flow-stats strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.flow-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 54px;
  gap: 7px;
}

.flow-gallery span,
.flow-falling {
  overflow: hidden;
  border: 2px solid rgba(255, 253, 251, 0.94);
  border-radius: 9px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 24px rgba(47, 41, 38, 0.16);
}

.flow-gallery span {
  opacity: 0.82;
  animation: fm-thumb-pop 6.8s ease-in-out infinite both;
}

.flow-gallery span:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.flow-gallery span:nth-child(1),
.flow-falling-1 {
  background-image: url("assets/hero-gallery-party-group-fun.jpg");
}

.flow-gallery span:nth-child(2),
.flow-falling-2 {
  background-image: url("assets/testimonial-slideshow.jpg");
}

.flow-gallery span:nth-child(3),
.flow-falling-3 {
  background-image: url("assets/hero-memory-parent-hug-no-phone.jpg");
}

.flow-gallery span:nth-child(4) {
  background-image: url("assets/hero-gallery-toast.jpg");
}

.flow-gallery span:nth-child(5) {
  background-image: url("assets/hero-gallery-fun-diverse-2.jpg");
}

.flow-gallery span:nth-child(6) {
  background-image: url("assets/hero-gallery-fun-diverse-1.jpg");
}

.flow-gallery span:nth-child(2) {
  animation-delay: 0.35s;
}

.flow-gallery span:nth-child(3) {
  animation-delay: 0.7s;
}

.flow-gallery span:nth-child(4) {
  animation-delay: 1.05s;
}

.flow-gallery span:nth-child(5) {
  animation-delay: 1.4s;
}

.flow-gallery span:nth-child(6) {
  animation-delay: 1.75s;
}

.flow-note-card {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 8px;
  background: rgba(255, 240, 243, 0.72);
  box-shadow: 0 12px 28px rgba(184, 101, 122, 0.12);
}

.flow-note-card span {
  color: var(--rose);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-note-card p {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.flow-phone-action {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 34px;
  margin-top: 9px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.flow-card {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 11px;
  width: 102px;
  min-height: 136px;
  padding: 14px 13px 16px;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 251, 0.96), rgba(255, 248, 246, 0.92)),
    repeating-linear-gradient(45deg, rgba(199, 165, 107, 0.08) 0 1px, transparent 1px 7px);
  box-shadow: 0 24px 60px rgba(47, 41, 38, 0.24);
  animation: fm-card-float 5.5s ease-in-out infinite;
}

.flow-card::after {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  content: "";
}

.flow-card span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card-a {
  top: 30px;
  left: 8px;
  transform: rotate(-7deg);
}

.flow-card-b {
  right: 0;
  top: 92px;
  animation-delay: 1.2s;
  transform: rotate(8deg);
}

.flow-qr {
  width: 62px;
  height: 62px;
  background: #ffffff url("assets/forever-memories-qr.svg") center / cover no-repeat;
  border: 7px solid #ffffff;
  outline: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(47, 41, 38, 0.08);
  image-rendering: pixelated;
}

.flow-falling {
  position: absolute;
  top: -8px;
  left: 158px;
  width: 58px;
  height: 58px;
  opacity: 0;
  animation: fm-photo-fall 6.8s ease-in-out infinite;
}

.flow-falling-2 {
  width: 50px;
  height: 50px;
  left: 102px;
  animation-delay: 1.15s;
}

.flow-falling-3 {
  width: 54px;
  height: 54px;
  left: 228px;
  animation-delay: 2.25s;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -26px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}

.proof-mobile-highlights {
  display: none;
}

.proof-strip div {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.proof-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.proof-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 28px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  max-width: 1180px;
  padding: 96px 32px;
  margin: 0 auto;
  scroll-margin-top: 92px;
}

.section h2,
.final-cta h2 {
  max-width: 840px;
  font-size: 48px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: start;
}

.lead-stack p,
.section-copy,
.journey-copy p,
.table-kit-copy p,
.guestbook-copy p,
.pricing-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.moments-band {
  max-width: none;
  background: var(--green);
}

.moments-band .section-kicker,
.moments-band h2,
.moments-intro {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.moments-band h2 {
  color: #ffffff;
}

.moments-intro {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.moment-grid,
.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.moment-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 36px auto 0;
}

.moment-grid article,
.feature-grid article,
.plan,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.moment-grid article {
  min-height: 258px;
  padding: 28px;
  background: #f8fbfa;
}

.moment-label {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.moment-grid h3,
.steps h3,
.feature-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

.moment-grid p,
.steps p,
.feature-grid p,
.faq p,
.plan-note,
.risk-reversal {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.flow-section {
  background: var(--paper);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.7fr);
  gap: 64px;
  align-items: end;
}

.process-head .section-copy {
  margin: 0;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.steps p {
  margin: 10px 0 0;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(66, 95, 86, 0.08);
}

.process-step:not(:last-child)::before,
.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.process-step:not(:last-child)::after {
  top: 96px;
  right: -72px;
  width: 96px;
  height: 54px;
  border: 2px solid rgba(184, 101, 122, 0.72);
  border-color: rgba(184, 101, 122, 0.72) transparent transparent transparent;
  border-radius: 50%;
  box-shadow: 0 -1px 0 rgba(184, 101, 122, 0.14);
  transform: rotate(-8deg);
}

.process-step:not(:last-child)::before {
  top: 104px;
  right: -72px;
  width: 11px;
  height: 11px;
  border-top: 2px solid rgba(184, 101, 122, 0.78);
  border-right: 2px solid rgba(184, 101, 122, 0.78);
  transform: rotate(54deg);
}

.process-step:nth-child(2)::after {
  top: 142px;
  right: -72px;
  border-color: transparent transparent rgba(184, 101, 122, 0.72) transparent;
  box-shadow: 0 1px 0 rgba(184, 101, 122, 0.14);
  transform: rotate(8deg);
}

.process-step:nth-child(2)::before {
  top: 184px;
  right: -72px;
  border-top: 0;
  border-right: 2px solid rgba(184, 101, 122, 0.78);
  border-bottom: 2px solid rgba(184, 101, 122, 0.78);
  transform: rotate(-36deg);
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process-visual {
  position: relative;
  display: grid;
  min-height: 148px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.78), rgba(237, 245, 241, 0.82)),
    #ffffff;
}

.process-visual::before {
  position: absolute;
  inset: auto -24px -42px 30%;
  height: 86px;
  border-radius: 50%;
  background: rgba(66, 95, 86, 0.11);
  content: "";
}

.mini-form,
.mini-phone-card,
.mini-support {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(30, 35, 32, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.96);
  box-shadow: 0 18px 40px rgba(47, 41, 38, 0.12);
}

.mini-form {
  display: grid;
  gap: 9px;
  width: min(78%, 230px);
  padding: 18px;
}

.mini-form span,
.mini-form strong,
.mini-form small {
  display: block;
  min-height: 30px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.mini-form strong {
  color: var(--rose);
}

.mini-form small {
  color: var(--muted);
}

.process-visual-supports {
  place-items: end center;
}

.mini-support {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 14px 12px;
}

.mini-support span {
  color: var(--rose);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-support div {
  background: #ffffff url("assets/forever-memories-qr.svg") center / cover no-repeat;
  border: 6px solid #ffffff;
  outline: 1px solid var(--line);
  image-rendering: pixelated;
}

.mini-support-main {
  width: 110px;
  min-height: 134px;
  margin-bottom: 15px;
}

.mini-support-main div {
  width: 58px;
  height: 58px;
}

.mini-support-side {
  position: absolute;
  z-index: 0;
  right: calc(50% - 112px);
  bottom: 20px;
  width: 84px;
  min-height: 106px;
  opacity: 0.82;
  transform: rotate(6deg);
}

.mini-support-side div {
  width: 40px;
  height: 40px;
}

.mini-phone-card {
  display: grid;
  gap: 10px;
  width: min(76%, 210px);
  padding: 14px;
}

.mini-phone-card span {
  color: var(--rose);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7px;
}

.mini-gallery i {
  display: block;
  min-height: 42px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.mini-gallery i:first-child {
  grid-row: span 2;
  background-image: url("assets/testimonial-brunch-no-phone.jpg");
}

.mini-gallery i:nth-child(2) {
  background-image: url("assets/testimonial-slideshow.jpg");
}

.mini-gallery i:nth-child(3) {
  background-image: url("assets/testimonial-wedding-couple-classic.jpg");
}

.mini-gallery i:nth-child(4) {
  grid-column: span 2;
  min-height: 30px;
  background:
    linear-gradient(90deg, rgba(66, 95, 86, 0.18), rgba(184, 101, 122, 0.18)),
    #ffffff;
}

.mini-phone-card strong {
  display: grid;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
}

.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.table-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.table-kit-copy h2 {
  max-width: 720px;
}

.table-kit-copy p {
  max-width: 640px;
  margin-top: 22px;
}

.kit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.kit-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.kit-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--rose);
  content: "";
}

.table-kit-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: #f7f0eb;
  box-shadow: 0 34px 80px rgba(47, 41, 38, 0.16);
}

.table-kit-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guestbook {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 72px;
  align-items: center;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(90, 65, 76, 0.98), rgba(66, 95, 86, 0.92)),
    var(--plum);
}

.guestbook h2 {
  max-width: 780px;
  color: #ffffff;
}

.guestbook-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.prompt-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.prompt-grid span {
  display: block;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  line-height: 1.45;
}

.guestbook-visual {
  position: relative;
  min-height: 510px;
}

.memory-note {
  position: absolute;
  border: 1px solid rgba(30, 35, 32, 0.08);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(5, 12, 10, 0.26);
}

.memory-note span {
  display: block;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.memory-note p {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
}

.memory-note small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.note-main {
  right: 22px;
  top: 116px;
  z-index: 2;
  width: 340px;
  min-height: 250px;
  padding: 30px;
}

.note-main p {
  font-size: 30px;
}

.note-side {
  top: 42px;
  left: 0;
  width: 254px;
  min-height: 190px;
  padding: 24px;
  transform: rotate(-6deg);
}

.note-side p {
  color: var(--green);
  font-size: 22px;
}

.note-bottom {
  right: 108px;
  bottom: 34px;
  width: 286px;
  min-height: 160px;
  padding: 24px;
  background: var(--rose-soft);
  transform: rotate(4deg);
}

.note-bottom p {
  color: var(--green);
  font-size: 22px;
}

.party-energy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.72), rgba(237, 245, 241, 0.72)),
    #ffffff;
}

.party-copy h2 {
  max-width: 760px;
}

.party-copy p {
  max-width: 660px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.party-button {
  color: var(--green);
  border-color: var(--green);
  background: #ffffff;
}

.party-board {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 251, 0.96), rgba(255, 248, 246, 0.96)),
    #ffffff;
  box-shadow: var(--shadow);
}

.party-board::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 42px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--rose), var(--green));
  content: "";
  opacity: 0.55;
}

.party-moment {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 22px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.party-moment::before {
  position: absolute;
  top: 27px;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px var(--line);
  content: "";
}

.moment-live {
  border-color: rgba(184, 101, 122, 0.36);
  box-shadow: 0 18px 44px rgba(184, 101, 122, 0.12);
}

.party-moment span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.party-moment strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.party-moment p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.guest-journey {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 72px;
  align-items: center;
}

.journey-copy p {
  max-width: 620px;
  margin-top: 22px;
}

.friction-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.friction-proof span {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(66, 95, 86, 0.16);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.92), rgba(255, 255, 255, 0.74)),
    #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.journey-tabs {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.tab {
  min-width: 86px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab.is-active,
.tab:hover,
.tab:focus-visible {
  color: #ffffff;
  background: var(--green);
  outline: none;
}

.phone-demo {
  position: relative;
  display: grid;
  justify-items: center;
}

.ease-orbit {
  position: absolute;
  z-index: 2;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(66, 95, 86, 0.15);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.ease-orbit-top {
  top: 76px;
  left: 24px;
  transform: rotate(-5deg);
}

.ease-orbit-bottom {
  right: 30px;
  bottom: 86px;
  color: var(--rose);
  transform: rotate(5deg);
}

.phone-shell {
  width: 310px;
  padding: 14px;
  border-radius: 32px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 560px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.92)),
    var(--paper);
}

.phone-time {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.qr-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 286px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.qr-card p {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.qr-card span {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.qr-pattern {
  width: 132px;
  height: 132px;
  background: #ffffff url("assets/forever-memories-qr.svg") center / cover no-repeat;
  border: 10px solid #ffffff;
  outline: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(47, 41, 38, 0.08);
  image-rendering: pixelated;
}

.phone-status {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  margin-top: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
}

.phone-status strong {
  font-size: 17px;
}

.phone-status span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimator-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.estimator-panel label {
  color: var(--green);
  font-weight: 900;
}

.estimator-panel input[type="range"] {
  width: 100%;
  accent-color: var(--rose);
}

.estimator-output {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  background: var(--rose-soft);
}

.estimator-output strong {
  color: var(--rose);
  font-size: 28px;
}

.estimator-output span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.comparison h2,
.features h2,
.testimonials h2,
.faq h2 {
  margin-bottom: 34px;
}

.comparison-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: stretch;
  margin: -14px 0 34px;
}

.comparison-copy {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.comparison-takeaway {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  padding: 22px 24px;
  margin: 0;
  border: 1px solid rgba(66, 95, 86, 0.16);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.88), rgba(255, 255, 255, 0.72)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(66, 95, 86, 0.1);
}

.comparison-takeaway span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-takeaway strong {
  color: var(--green);
  font-size: 17px;
  line-height: 1.45;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(66, 95, 86, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(237, 245, 241, 0.64), rgba(255, 255, 255, 0) 30%),
    #ffffff;
  box-shadow: 0 26px 70px rgba(66, 95, 86, 0.12);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.92fr) minmax(220px, 1.28fr) repeat(3, minmax(150px, 1fr));
  border-top: 1px solid rgba(66, 95, 86, 0.12);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  position: relative;
  min-height: 72px;
  padding: 18px;
  border-left: 1px solid rgba(66, 95, 86, 0.12);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.comparison-row > div:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 248, 246, 0.72);
}

.comparison-row > div:nth-child(2) {
  color: var(--green);
  background:
    linear-gradient(180deg, rgba(237, 245, 241, 0.92), rgba(255, 255, 255, 0.82)),
    #ffffff;
  border-right: 1px solid rgba(66, 95, 86, 0.16);
}

.comparison-head > div {
  min-height: 74px;
  color: var(--green);
  background: rgba(237, 245, 241, 0.9);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-head > div:nth-child(2) {
  color: #ffffff;
  background: var(--green);
}

.comparison-head strong {
  display: block;
  font-size: 13px;
}

.comparison-head span {
  display: block;
  margin-top: 5px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
  opacity: 0.74;
}

.comparison-row .good {
  color: var(--green);
  font-weight: 900;
}

@media (min-width: 721px) {
  .comparison-row:not(.comparison-head) > div:nth-child(2)::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: var(--green);
    content: "";
  }

  .comparison-row .good {
    display: flex;
    gap: 10px;
  }

  .comparison-row .good::after {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 0.55em;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 165, 107, 0.16);
    content: "";
    order: -1;
  }
}

.features {
  max-width: none;
  background: #ffffff;
}

.features > .section-kicker,
.features > h2,
.feature-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article {
  min-height: 228px;
  padding: 26px;
}

.feature-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 10px solid var(--green-soft);
  border-radius: 8px;
  background: var(--green);
}

.feature-grid p {
  margin: 12px 0 0;
}

.planner-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr) auto;
  gap: 28px;
  align-items: center;
  padding: 56px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(66, 95, 86, 0.12);
  border-bottom: 1px solid rgba(66, 95, 86, 0.12);
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.9), rgba(255, 240, 243, 0.58)),
    #ffffff;
}

.planner-strip h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.05;
}

.planner-strip p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.planner-strip-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.planner-strip-metrics span {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(66, 95, 86, 0.14);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 16px 40px rgba(66, 95, 86, 0.08);
}

.planner-strip-metrics strong {
  display: block;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.planner-strip-button {
  color: var(--green);
  border-color: var(--green);
  background: #ffffff;
  white-space: nowrap;
}

.partner-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(47, 41, 38, 0.92) 0%, rgba(47, 41, 38, 0.76) 42%, rgba(66, 95, 86, 0.28) 72%, rgba(47, 41, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(47, 41, 38, 0.5), rgba(47, 41, 38, 0.08) 50%);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.partner-proof {
  margin-top: -20px;
}

.partner-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.partner-section-head h2 {
  margin-bottom: 0;
}

.partner-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.partner-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 56px;
  align-items: center;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.partner-offer-copy h2 {
  max-width: 740px;
}

.partner-offer-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.partner-offer-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.partner-offer-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.partner-offer-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--rose);
  content: "";
}

.partner-offer-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
  background: #f7f0eb;
  box-shadow: 0 34px 80px rgba(47, 41, 38, 0.16);
}

.partner-offer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-economics {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: start;
}

.partner-economics-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.partner-economics-grid {
  display: grid;
  gap: 14px;
}

.partner-economics-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(66, 95, 86, 0.08);
}

.partner-economics-card strong {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.partner-economics-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
}

.partner-economics-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.partner-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.partner-contact {
  padding: 96px 32px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(90, 65, 76, 0.98), rgba(66, 95, 86, 0.88)),
    var(--plum);
}

.partner-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.partner-contact h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.02;
}

.partner-contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.partner-contact-box {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.partner-contact-box span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-contact-box strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
}

.testimonials {
  max-width: none;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.testimonials-head,
.testimonial-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.testimonials-head h2 {
  margin-bottom: 0;
}

.testimonials-head p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.testimonial-card {
  display: flex;
  min-height: 688px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(66, 95, 86, 0.1);
  flex-direction: column;
}

.testimonial-card-featured {
  border-color: rgba(184, 101, 122, 0.44);
  box-shadow: 0 28px 70px rgba(184, 101, 122, 0.17);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonial-body {
  display: flex;
  padding: 26px;
  flex: 1;
  flex-direction: column;
}

.testimonial-tag {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--rose);
  background: var(--rose-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 20px 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.testimonial-meta {
  margin: auto 0 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.testimonial-persona {
  min-height: 72px;
  padding-top: 16px;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: 104px;
}

.pricing-copy p {
  margin-top: 22px;
}

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

.pricing > .plan-all-in {
  grid-column: 2;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 604px;
  padding: 28px;
}

.plan-featured {
  border: 2px solid var(--rose);
  box-shadow: var(--shadow);
}

.plan-all-in {
  min-height: auto;
}

.plan-badge {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 7px 10px;
  margin: 0 0 16px;
  border-radius: 8px;
  color: var(--rose);
  background: var(--rose-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-name {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.plan-price {
  margin: 14px 0 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
}

.plan-note {
  min-height: 50px;
  margin: 0;
}

.plan ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.plan li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.plan .button {
  margin-top: auto;
}

.risk-reversal {
  grid-column: 2;
  margin: -22px 0 0;
  padding: 0 4px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 14px;
}

.faq details {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.44), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 16px 36px rgba(66, 95, 86, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.faq details::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--rose);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.faq details:hover,
.faq details[open] {
  border-color: rgba(184, 101, 122, 0.34);
  box-shadow: 0 22px 52px rgba(66, 95, 86, 0.13);
  transform: translateY(-2px);
}

.faq details[open] {
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.7), rgba(237, 245, 241, 0.48)),
    #ffffff;
}

.faq details[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  min-height: 90px;
  padding: 22px 18px 22px 22px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(66, 95, 86, 0.16);
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 20px rgba(66, 95, 86, 0.08);
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 260ms ease;
}

.faq details[open] summary::after {
  color: #ffffff;
  border-color: var(--rose);
  background: var(--rose);
  content: "-";
  transform: rotate(180deg);
}

.faq-index {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq summary:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: -6px;
}

.faq p {
  padding: 0 66px 24px 68px;
  margin: -4px 0 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.faq details[open] p {
  opacity: 1;
  transform: translateY(0);
}

@supports selector(details::details-content) {
  .faq details::details-content {
    block-size: 0;
    overflow: clip;
    opacity: 0;
    transition:
      block-size 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      content-visibility 320ms allow-discrete,
      opacity 220ms ease;
  }

  .faq details[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq details,
  .faq details::before,
  .faq details::details-content,
  .faq summary::after,
  .faq p {
    transition: none;
  }

  .faq details:hover,
  .faq details[open],
  .faq p {
    transform: none;
  }
}

.final-cta {
  padding: 96px 32px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(90, 65, 76, 0.98), rgba(66, 95, 86, 0.88)),
    var(--plum);
  scroll-margin-top: 92px;
}

.final-inner {
  max-width: 980px;
  margin: 0 auto;
}

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

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gift-modal {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: none;
  color: var(--ink);
}

.gift-modal.is-open {
  display: block;
}

.gift-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 41, 38, 0.64);
  backdrop-filter: blur(10px);
}

.gift-dialog {
  position: relative;
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 34px 90px rgba(47, 41, 38, 0.3);
}

.gift-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(47, 41, 38, 0.18);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gift-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.gift-preview {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  margin: 0;
  background: var(--green);
}

.gift-preview img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gift-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 41, 38, 0.04), rgba(47, 41, 38, 0.72));
  content: "";
}

.gift-preview-note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(47, 41, 38, 0.38);
  backdrop-filter: blur(14px);
}

.gift-preview-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-preview-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.gift-content {
  padding: 48px;
}

.gift-content h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.02;
}

.gift-content > p:not(.section-kicker) {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.gift-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.gift-benefits span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.gift-form {
  display: grid;
  gap: 14px;
}

.gift-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.gift-form input,
.gift-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
}

.gift-form input {
  min-height: 46px;
  padding: 0 14px;
}

.gift-form textarea {
  min-height: 104px;
  padding: 12px 14px;
  resize: vertical;
}

.gift-success {
  margin: -2px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.onboarding {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  color: var(--ink);
}

.onboarding.is-open {
  display: block;
}

body.onboarding-open {
  overflow: hidden;
}

.onboarding-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 41, 38, 0.62);
  backdrop-filter: blur(10px);
}

.onboarding-dialog {
  position: relative;
  display: grid;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 34px 90px rgba(47, 41, 38, 0.28);
}

.onboarding-dialog:focus {
  outline: none;
}

.onboarding-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(47, 41, 38, 0.18);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.onboarding-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  min-height: 680px;
  max-height: calc(100vh - 32px);
  overflow: auto;
}

.onboarding-preview {
  position: sticky;
  top: 0;
  display: grid;
  align-content: center;
  min-height: 680px;
  padding: 42px;
  background:
    linear-gradient(150deg, rgba(255, 240, 243, 0.9), rgba(237, 245, 241, 0.96)),
    var(--paper);
}

.preview-kicker {
  margin: 0 0 24px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stand-mockup {
  --card-bg: #fffdfb;
  --card-ink: #2f2926;
  --card-accent: #b8657a;
  --card-soft: #fff0f3;
  --card-line: rgba(199, 165, 107, 0.48);
  --photo-radius: 50%;
  position: relative;
  display: block;
  min-height: 500px;
  padding-top: 12px;
  perspective: 1200px;
}

.stand-mockup[data-preview-theme="romantic"] {
  --card-accent: #b8657a;
  --card-soft: #fff0f3;
  --card-bg: #fff8f6;
  --card-line: rgba(184, 101, 122, 0.34);
  --photo-radius: 42% 58% 48% 52%;
}

.stand-mockup[data-preview-theme="garden"] {
  --card-accent: #425f56;
  --card-soft: #edf5f1;
  --card-bg: #fbfff8;
  --card-line: rgba(66, 95, 86, 0.32);
  --photo-radius: 8px;
}

.stand-mockup::before {
  position: absolute;
  right: 16px;
  bottom: 34px;
  left: 10px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 41, 38, 0.2), transparent 68%);
  filter: blur(10px);
  content: "";
}

.stand-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  border: 1px solid var(--card-line);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2)),
    var(--card-bg);
  box-shadow:
    0 34px 48px rgba(47, 41, 38, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  transform-style: preserve-3d;
}

.stand-card-main {
  position: absolute;
  top: 16px;
  right: 22px;
  width: min(72%, 318px);
  min-height: 372px;
  padding: 34px 28px 44px;
  transform: rotate(2deg) rotateY(-5deg);
}

.stand-card-small {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: -38px;
  width: 128px;
  min-height: 190px;
  padding: 18px 14px 24px;
  transform: rotate(-8deg) rotateY(8deg);
  box-shadow:
    0 22px 36px rgba(47, 41, 38, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.stand-mockup[data-preview-theme="editorial"] .stand-card-main {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(199, 165, 107, 0.22) 47% 53%, transparent 53%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18)),
    var(--card-bg);
}

.stand-mockup[data-preview-theme="romantic"] .stand-card-main {
  border-radius: 28px 28px 4px 4px;
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 101, 122, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(199, 165, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    var(--card-bg);
}

.stand-mockup[data-preview-theme="garden"] .stand-card-main {
  background:
    linear-gradient(135deg, rgba(66, 95, 86, 0.12) 0 14%, transparent 14% 86%, rgba(66, 95, 86, 0.12) 86%),
    radial-gradient(circle at 12% 88%, rgba(199, 165, 107, 0.12), transparent 28%),
    var(--card-bg);
}

.stand-card-main::before,
.stand-card-main::after {
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--card-accent);
  opacity: 0.28;
  content: "";
}

.stand-card-main::before {
  top: 14px;
  left: 14px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.stand-card-main::after {
  right: 14px;
  bottom: 14px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.stand-mini-art {
  position: relative;
  width: 82px;
  height: 92px;
  margin-top: 18px;
}

.stand-mini-art::before,
.stand-mini-art::after {
  position: absolute;
  bottom: 4px;
  border-radius: 40% 48% 6px 6px;
  content: "";
}

.stand-mini-art::before {
  left: 18px;
  width: 34px;
  height: 42px;
  background: #3f383a;
}

.stand-mini-art::after {
  right: 12px;
  width: 30px;
  height: 72px;
  background: var(--card-accent);
  opacity: 0.82;
}

.stand-mini-art span {
  position: absolute;
  width: 30px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 253, 251, 0.72);
}

.stand-mini-art span:nth-child(1) {
  top: 34px;
  left: 8px;
  transform: rotate(24deg);
}

.stand-mini-art span:nth-child(2) {
  top: 22px;
  left: 38px;
  transform: rotate(-18deg);
}

.stand-mini-art span:nth-child(3) {
  top: 14px;
  right: 8px;
  width: 24px;
  transform: rotate(18deg);
}

.stand-card-small p {
  margin: 12px 0 8px;
  color: var(--card-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.stand-mini-qr {
  width: 42px;
  height: 42px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  background: #ffffff url("assets/forever-memories-qr.svg") center / cover no-repeat;
  box-shadow: 0 6px 14px rgba(47, 41, 38, 0.12);
}

.stand-photo {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(199, 165, 107, 0.58);
  border-radius: var(--photo-radius);
  background:
    radial-gradient(circle at 50% 36%, rgba(184, 101, 122, 0.24), transparent 32%),
    var(--card-soft);
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stand-mockup[data-preview-theme="garden"] .stand-photo {
  width: 136px;
  height: 86px;
}

.stand-mockup[data-preview-theme="romantic"] .stand-names {
  color: var(--card-accent);
}

.stand-mockup[data-preview-theme="garden"] .stand-names {
  font-size: 32px;
}

.stand-photo.has-image {
  background-size: cover;
  background-position: center;
}

.stand-photo.has-image span {
  display: none;
}

.stand-names {
  max-width: 240px;
  margin: 18px 0 0;
  color: var(--card-ink);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.stand-message {
  max-width: 230px;
  min-height: 48px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.stand-qr {
  width: 112px;
  height: 112px;
  border: 8px solid #ffffff;
  border-radius: 8px;
  background: #ffffff url("assets/forever-memories-qr.svg") center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(47, 41, 38, 0.12);
}

.stand-base {
  position: absolute;
  z-index: 5;
  height: 38px;
  border-radius: 7px 7px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 236, 205, 0.42), transparent 45%),
    repeating-linear-gradient(90deg, rgba(79, 53, 31, 0.16) 0 2px, transparent 2px 10px),
    linear-gradient(90deg, rgba(110, 78, 48, 0.55), rgba(224, 174, 107, 0.84), rgba(115, 80, 48, 0.58)),
    #b9824d;
  box-shadow:
    0 18px 24px rgba(47, 41, 38, 0.22),
    inset 0 2px 0 rgba(255, 236, 205, 0.5);
}

.stand-base::before {
  position: absolute;
  right: 10px;
  bottom: 100%;
  left: 10px;
  height: 12px;
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(180deg, rgba(82, 52, 28, 0.44), rgba(226, 178, 112, 0.78)),
    #c9955d;
  box-shadow:
    inset 0 -3px 4px rgba(78, 48, 27, 0.24),
    0 -2px 5px rgba(47, 41, 38, 0.1);
  content: "";
}

.stand-base::after {
  position: absolute;
  right: 18px;
  bottom: calc(100% + 5px);
  left: 18px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 41, 38, 0.42);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.32);
  content: "";
}

.stand-base-main {
  right: 38px;
  bottom: 8px;
  width: 250px;
  transform: rotate(1deg);
}

.stand-base-small {
  bottom: 32px;
  left: -42px;
  width: 140px;
  transform: rotate(-4deg);
}

.preview-summary {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.7);
}

.preview-summary strong {
  color: var(--green);
  font-size: 17px;
}

.preview-summary span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.onboarding-panel {
  padding: 46px 46px 34px;
}

.onboarding-top {
  display: grid;
  gap: 18px;
  padding-right: 34px;
}

.onboarding-top h2,
.onboarding-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.03;
}

.onboarding-top h2 {
  max-width: 560px;
  font-size: 38px;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 560px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 246, 0.72);
}

.onboarding-progress span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.onboarding-progress span::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  content: "";
}

.onboarding-progress span.is-active {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(66, 95, 86, 0.18);
}

.onboarding-progress span.is-active::before {
  opacity: 1;
}

.onboarding-form {
  margin-top: 26px;
}

.onboarding-step {
  display: none;
}

.onboarding-step.is-active {
  display: block;
}

.step-count {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-step h3 {
  max-width: 560px;
  color: var(--ink);
  font-size: 34px;
}

.step-copy {
  max-width: 620px;
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.form-grid,
.quantity-grid {
  display: grid;
  gap: 14px;
}

.quantity-grid {
  grid-template-columns: repeat(2, 1fr);
}

.onboarding label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.onboarding input,
.onboarding textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 700;
}

.onboarding textarea {
  resize: vertical;
}

.upload-field {
  position: relative;
}

.upload-field input[type="file"] {
  position: absolute;
  inset: auto auto 18px 18px;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.upload-dropzone {
  display: grid;
  min-height: 52px;
  padding: 14px;
  overflow: hidden;
  border: 1px dashed rgba(66, 95, 86, 0.32);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.86), rgba(255, 253, 251, 0.9)),
    #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  place-items: center;
  cursor: pointer;
}

.upload-field:focus-within .upload-dropzone {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 101, 122, 0.16);
}

.upload-hint,
.checkbox-field {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin-top: 16px;
}

.estimate-field {
  align-self: end;
  min-height: 48px;
  padding: 13px 14px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
}

.theme-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.theme-option {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.theme-option.is-active {
  border-color: var(--rose);
  box-shadow: 0 12px 26px rgba(184, 101, 122, 0.12);
}

.theme-swatch {
  display: block;
  height: 26px;
  border-radius: 8px;
}

.theme-editorial {
  background: linear-gradient(135deg, #fffdfb, #f2dfd9 52%, #425f56);
}

.theme-romantic {
  background: linear-gradient(135deg, #fff0f3, #d993a4 52%, #c7a56b);
}

.theme-garden {
  background: linear-gradient(135deg, #edf5f1, #8ba79a 52%, #c7a56b);
}

.support-callout {
  display: grid;
  gap: 8px;
  padding: 14px;
  margin-top: 16px;
  border: 1px solid rgba(66, 95, 86, 0.2);
  border-radius: 8px;
  background: var(--green-soft);
}

.support-callout strong {
  color: var(--green);
  font-size: 17px;
}

.support-callout span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.checkout-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(66, 95, 86, 0.12);
}

.checkout-card > div {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.checkout-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-card strong {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
}

.checkout-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checkout-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.fake-pay-button {
  width: 100%;
  margin-top: 18px;
}

.final-mail-link {
  display: none;
}

.payment-error {
  padding: 13px 14px;
  margin: 14px 0 0;
  border: 1px solid rgba(184, 101, 122, 0.32);
  border-radius: 8px;
  color: #8c2e44;
  background: var(--rose-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.payment-success {
  display: grid;
  gap: 6px;
  padding: 16px;
  margin-top: 16px;
  border: 1px solid rgba(66, 95, 86, 0.22);
  border-radius: 8px;
  background: var(--green-soft);
}

.payment-success strong {
  color: var(--green);
  font-size: 17px;
}

.payment-success span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.post-purchase-upsells {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.payment-success[hidden],
.post-purchase-upsells[hidden] {
  display: none;
}

.post-purchase-upsells p {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.post-purchase-upsells button {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: var(--paper);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.post-purchase-upsells button:hover,
.post-purchase-upsells button:focus-visible {
  border-color: var(--green);
  outline: none;
}

.onboarding .button-secondary {
  color: var(--green);
  border-color: var(--line);
  background: #ffffff;
}

.onboarding-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
}

.onboarding-actions .button {
  min-width: 154px;
}

.onboarding-prev[hidden],
.onboarding-next[hidden] {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px 32px;
  padding: 34px 32px;
  color: var(--muted);
  background: #ffffff;
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  width: min(140px, 42vw);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--green);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: var(--green-soft);
  outline: none;
}

@keyframes fm-card-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes fm-photo-fall {
  0% {
    opacity: 0;
    transform: translateY(-28px) rotate(-12deg) scale(0.82);
  }

  18% {
    opacity: 1;
  }

  64% {
    opacity: 1;
    transform: translateY(194px) rotate(7deg) scale(0.74);
  }

  82%,
  100% {
    opacity: 0;
    transform: translateY(226px) rotate(9deg) scale(0.5);
  }
}

@keyframes fm-thumb-pop {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0) scale(0.98);
  }

  38%,
  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1);
  }

  86% {
    opacity: 0.9;
    transform: translateY(0) scale(0.99);
  }
}

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

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-memory-flow {
    display: none;
  }

  .split,
  .process-head,
  .planner-strip,
  .partner-section-head,
  .partner-offer,
  .partner-economics,
  .partner-contact-inner,
  .guest-journey,
  .table-kit,
  .guestbook,
  .party-energy,
  .estimator,
  .pricing {
    grid-template-columns: 1fr;
  }

  .estimator {
    gap: 28px;
  }

  .table-kit {
    padding-right: 32px;
    padding-left: 32px;
  }

  .guestbook {
    padding-right: 32px;
    padding-left: 32px;
  }

  .party-energy {
    padding-right: 32px;
    padding-left: 32px;
  }

  .planner-strip {
    padding-right: 32px;
    padding-left: 32px;
  }

  .planner-strip-button {
    width: max-content;
  }

  .partner-offer {
    padding-right: 32px;
    padding-left: 32px;
  }

  .pricing-copy {
    position: static;
  }

  .pricing > .plan-all-in,
  .risk-reversal {
    grid-column: 1;
  }

  .onboarding-shell {
    grid-template-columns: 1fr;
  }

  .gift-shell {
    grid-template-columns: 1fr;
  }

  .gift-preview,
  .gift-preview img {
    min-height: 360px;
  }

  .onboarding-preview {
    position: relative;
    min-height: auto;
    padding: 34px 34px 24px;
  }

  .stand-mockup {
    min-height: 430px;
  }

  .stand-card-main {
    right: 38px;
    width: min(66%, 280px);
    min-height: 340px;
  }

  .stand-card-small {
    width: 130px;
    min-height: 196px;
  }

  .stand-photo {
    width: 94px;
    height: 94px;
  }

  .stand-mockup[data-preview-theme="garden"] .stand-photo {
    width: 108px;
    height: 68px;
  }

  .stand-names {
    font-size: 32px;
  }

  .stand-qr {
    width: 96px;
    height: 96px;
  }

  .onboarding-progress {
    max-width: none;
  }

  .onboarding-progress span {
    font-size: 11px;
  }

  .onboarding-panel {
    padding: 34px;
  }

  .moment-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 34px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step:nth-child(2)::before,
  .process-step:not(:last-child)::before,
  .process-step:nth-child(2)::after,
  .process-step:not(:last-child)::after {
    top: auto;
    right: auto;
    box-shadow: none;
    clip-path: none;
  }

  .process-step:nth-child(2)::after,
  .process-step:not(:last-child)::after {
    bottom: -36px;
    left: calc(50% - 26px);
    width: 52px;
    height: 32px;
    border: 2px solid rgba(184, 101, 122, 0.72);
    border-color: transparent rgba(184, 101, 122, 0.72) rgba(184, 101, 122, 0.72) transparent;
    border-radius: 0 0 28px;
    background: transparent;
    transform: rotate(8deg);
  }

  .process-step:nth-child(2)::before,
  .process-step:not(:last-child)::before {
    bottom: -40px;
    left: calc(50% + 18px);
    width: 10px;
    height: 10px;
    border: 0;
    border-right: 2px solid rgba(184, 101, 122, 0.78);
    border-bottom: 2px solid rgba(184, 101, 122, 0.78);
    transform: rotate(45deg);
  }

  .testimonials-head,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .comparison-lead {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 1120px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .section,
  .final-cta {
    scroll-margin-top: 76px;
  }

  .brand-logo-full {
    display: none;
  }

  .brand-logo-mark {
    display: none;
  }

  .site-header.is-scrolled .brand-logo-mark {
    display: block;
  }

  .site-header.is-scrolled .brand-logo-full {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: min(900px, 100svh);
  }

  .hero-image {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(47, 41, 38, 0.9) 0%, rgba(47, 41, 38, 0.68) 48%, rgba(47, 41, 38, 0.08) 100%),
      linear-gradient(0deg, rgba(47, 41, 38, 0.38) 0%, rgba(47, 41, 38, 0.12) 40%, rgba(47, 41, 38, 0.2) 100%);
  }

  .hero-content {
    width: min(100%, 390px);
    max-width: 390px;
    min-height: min(900px, 100svh);
    padding: 86px 20px 30px;
    margin-left: 0;
  }

  .eyebrow {
    max-width: 320px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-rating {
    order: 4;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 32px;
    padding: 6px 10px;
    margin-top: auto;
    background: rgba(47, 41, 38, 0.28);
  }

  .hero-rating small {
    flex-basis: auto;
    width: auto;
    margin-left: 0;
    padding-left: 0;
    font-size: 11px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
    max-width: 350px;
  }

  .partner-actions,
  .partner-actions .button {
    width: 100%;
    max-width: 350px;
  }

  .hero-actions {
    order: 5;
    margin-top: 10px;
  }

  .final-actions {
    display: grid;
  }

  .trust-list {
    display: none;
  }

  .trust-list li {
    min-width: 0;
    text-align: center;
  }

  .onboarding-dialog {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .gift-dialog {
    width: 100vw;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .onboarding-shell {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    align-content: start;
  }

  .gift-shell {
    max-height: 100vh;
  }

  .onboarding-close {
    top: 10px;
    right: 10px;
  }

  .gift-close {
    top: 10px;
    right: 10px;
  }

  .gift-preview,
  .gift-preview img {
    min-height: 286px;
  }

  .gift-preview-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px;
  }

  .gift-preview-note strong {
    font-size: 23px;
  }

  .gift-content {
    padding: 30px 20px 24px;
  }

  .gift-content h2 {
    font-size: 32px;
  }

  .gift-content > p:not(.section-kicker) {
    font-size: 15px;
  }

  .gift-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
  }

  .gift-benefits span {
    min-height: auto;
    padding: 12px 14px;
  }

  .onboarding-preview {
    order: 2;
    padding: 18px 20px;
  }

  .onboarding-panel {
    order: 1;
  }

  .preview-kicker {
    margin-bottom: 8px;
  }

  .stand-mockup {
    min-height: 318px;
    padding-top: 0;
  }

  .stand-card-main {
    top: 0;
    right: 12px;
    width: min(68%, 210px);
    min-height: 244px;
    padding: 16px 15px 30px;
  }

  .stand-card-small {
    bottom: 38px;
    left: 2px;
    width: 92px;
    min-height: 138px;
    padding: 12px 9px 18px;
  }

  .stand-mini-art {
    width: 52px;
    height: 58px;
    margin-top: 10px;
  }

  .stand-mini-art::before {
    left: 10px;
    width: 22px;
    height: 28px;
  }

  .stand-mini-art::after {
    right: 5px;
    width: 20px;
    height: 46px;
  }

  .stand-mini-art span {
    width: 18px;
    height: 11px;
  }

  .stand-mini-art span:nth-child(1) {
    top: 22px;
    left: 4px;
  }

  .stand-mini-art span:nth-child(2) {
    top: 14px;
    left: 24px;
  }

  .stand-mini-art span:nth-child(3) {
    top: 9px;
    right: 4px;
    width: 15px;
  }

  .stand-card-small p {
    margin: 7px 0 5px;
    font-size: 15px;
  }

  .stand-mini-qr {
    width: 28px;
    height: 28px;
    border-width: 3px;
  }

  .stand-photo {
    width: 58px;
    height: 58px;
  }

  .stand-mockup[data-preview-theme="garden"] .stand-photo {
    width: 84px;
    height: 54px;
  }

  .stand-names {
    max-width: 170px;
    margin-top: 12px;
    font-size: 24px;
  }

  .stand-message {
    min-height: 34px;
    margin: 10px 0 12px;
    font-size: 12px;
  }

  .stand-qr {
    width: 64px;
    height: 64px;
    border-width: 6px;
  }

  .stand-base-main {
    right: 16px;
    bottom: 10px;
    width: 158px;
    height: 30px;
  }

  .stand-base-small {
    bottom: 32px;
    left: 0;
    width: 92px;
    height: 25px;
  }

  .preview-summary {
    padding: 14px;
  }

  .onboarding-panel {
    padding: 28px 20px 24px;
  }

  .onboarding-top {
    padding-right: 34px;
  }

  .onboarding-top h2 {
    font-size: 32px;
  }

  .onboarding-progress span {
    min-height: 30px;
    padding: 7px 6px;
    font-size: 10px;
  }

  .onboarding-progress span::before {
    width: 5px;
    height: 5px;
    margin-right: 5px;
  }

  .onboarding-step h3 {
    font-size: 30px;
  }

  .quantity-grid,
  .theme-options {
    grid-template-columns: 1fr;
  }

  .checkout-card > div {
    display: grid;
    gap: 6px;
  }

  .checkout-card strong {
    font-size: 44px;
  }

  .onboarding-actions {
    display: grid;
  }

  .hero-rating {
    width: max-content;
    justify-content: center;
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .trust-list li {
    width: auto;
    min-height: 42px;
    padding: 8px 9px;
    text-align: center;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-top: -16px;
  }

  .proof-mobile-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: auto;
    padding: 12px;
    border: 1px solid rgba(66, 95, 86, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 251, 0.92);
    box-shadow: 0 18px 46px rgba(66, 95, 86, 0.12);
  }

  .proof-mobile-highlights span {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 7px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--green);
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .proof-strip div,
  .proof-strip div:first-child,
  .proof-strip div:last-child {
    min-height: auto;
    border-radius: 8px;
  }

  .section,
  .final-cta {
    padding: 64px 20px;
  }

  .partner-contact {
    padding: 72px 20px;
  }

  .table-kit {
    padding-right: 20px;
    padding-left: 20px;
  }

  .guestbook {
    padding-right: 20px;
    padding-left: 20px;
  }

  .party-energy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .planner-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 20px;
  }

  .planner-strip h2 {
    font-size: 28px;
  }

  .planner-strip p {
    font-size: 15px;
    line-height: 1.58;
  }

  .planner-strip-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .planner-strip-metrics span {
    justify-items: center;
    min-height: 92px;
    padding: 10px 8px;
    font-size: 11.5px;
    text-align: center;
  }

  .planner-strip-metrics strong {
    font-size: 24px;
  }

  .planner-strip-button {
    width: 100%;
    white-space: normal;
  }

  .partner-proof {
    margin-top: -16px;
  }

  .partner-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .partner-section-head p {
    font-size: 16px;
    line-height: 1.58;
  }

  .partner-offer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .partner-offer-copy p,
  .partner-economics-copy p,
  .partner-contact p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .partner-offer-list {
    margin-top: 22px;
  }

  .partner-economics {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-economics-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .partner-economics-card strong {
    width: 72px;
    height: 72px;
    font-size: 27px;
  }

  .partner-economics-card h3 {
    font-size: 18px;
  }

  .partner-contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-contact h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  .section h2,
  .final-cta h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  .lead-stack p,
  .section-copy,
  .journey-copy p,
  .table-kit-copy p,
  .guestbook-copy p,
  .party-copy p,
  .pricing-copy p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.58;
  }

  .table-kit,
  .guestbook,
  .party-energy,
  .guest-journey,
  .pricing {
    gap: 32px;
  }

  .kit-list {
    gap: 10px;
    margin-top: 24px;
  }

  .kit-list li {
    padding-left: 24px;
    font-size: 15px;
  }

  .kit-list li::before {
    width: 12px;
    height: 12px;
  }

  .prompt-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .prompt-grid span {
    min-height: auto;
    padding: 14px 16px;
    font-size: 14px;
  }

  .party-board {
    gap: 10px;
    padding: 12px;
  }

  .party-board::before {
    left: 30px;
  }

  .party-moment {
    min-height: auto;
    padding: 16px 14px 16px 38px;
  }

  .party-moment::before {
    left: 8px;
  }

  .party-moment strong {
    font-size: 21px;
  }

  .party-moment span {
    margin-bottom: 6px;
    font-size: 10.5px;
  }

  .party-moment p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.48;
  }

  .guestbook-visual {
    min-height: 360px;
  }

  .note-main {
    right: 0;
    top: 86px;
    width: min(78%, 280px);
    min-height: 190px;
    padding: 20px;
  }

  .note-main p {
    font-size: 22px;
  }

  .note-side {
    top: 18px;
    width: 168px;
    min-height: 140px;
    padding: 16px;
  }

  .note-side p,
  .note-bottom p {
    font-size: 16px;
  }

  .note-bottom {
    right: 24px;
    bottom: 12px;
    width: 210px;
    min-height: 126px;
    padding: 16px;
  }

  .moment-grid,
  .process-steps,
  .feature-grid,
  .testimonial-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq summary {
    grid-template-columns: auto minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 82px;
    padding: 18px 14px 18px 18px;
    font-size: 17px;
  }

  .faq summary::after {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .faq p {
    padding: 0 18px 22px 48px;
  }

  .comparison-lead {
    gap: 18px;
    margin-bottom: 28px;
  }

  .comparison-takeaway {
    min-height: auto;
    padding: 18px;
  }

  .comparison-takeaway strong {
    font-size: 16px;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-row {
    min-width: 0;
    overflow: hidden;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(66, 95, 86, 0.08);
  }

  .comparison-row:first-child {
    border-top: 1px solid var(--line);
  }

  .comparison-head {
    display: none;
  }

  .comparison-row > div {
    min-height: auto;
    padding: 12px 14px;
    border-left: 0;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
  }

  .comparison-row > div:nth-child(n + 3) {
    padding: 10px 12px;
    font-size: 12.5px;
  }

  .comparison-row > div:first-child {
    grid-column: 1 / -1;
    border-top: 0;
    color: var(--green);
    background: var(--green-soft);
    font-size: 15px;
  }

  .comparison-row > div:nth-child(2) {
    grid-column: 1 / -1;
    background: rgba(237, 245, 241, 0.7);
    border-right: 0;
  }

  .comparison-row > div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .comparison-row > div:not(:first-child)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    content: "";
  }

  .comparison-row > div:nth-child(2)::before {
    content: "Forever Memories";
  }

  .comparison-row > div:nth-child(3)::before {
    content: "Groupe WhatsApp";
  }

  .comparison-row > div:nth-child(4)::before {
    content: "Google Drive";
  }

  .comparison-row > div:nth-child(5)::before {
    content: "Photo jetable";
  }

  .comparison-row .good {
    background: rgba(237, 245, 241, 0.64);
    font-size: 14px;
  }

  .process-head {
    gap: 24px;
  }

  .process-steps {
    gap: 30px;
    margin-top: 32px;
  }

  .process-step {
    min-height: auto;
    padding: 20px;
  }

  .process-step:nth-child(2)::before,
  .process-step:not(:last-child)::before,
  .process-step:nth-child(2)::after,
  .process-step:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    box-shadow: none;
    clip-path: none;
  }

  .process-step:nth-child(2)::after,
  .process-step:not(:last-child)::after {
    bottom: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(184, 101, 122, 0.18), rgba(184, 101, 122, 0.72));
    transform: translateX(-50%);
  }

  .process-step:nth-child(2)::before,
  .process-step:not(:last-child)::before {
    bottom: -31px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border: 0;
    border-right: 2px solid rgba(184, 101, 122, 0.78);
    border-bottom: 2px solid rgba(184, 101, 122, 0.78);
    transform: rotate(45deg);
  }

  .process-visual {
    min-height: 138px;
  }

  .moment-grid article,
  .process-step,
  .feature-grid article,
  .testimonial-card,
  .plan {
    min-height: auto;
  }

  .testimonials-head {
    gap: 18px;
  }

  .testimonials-head p {
    font-size: 16px;
  }

  .testimonial-body {
    padding: 18px;
  }

  .testimonial-card img {
    height: clamp(220px, 62vw, 260px);
    object-fit: cover;
  }

  .testimonial-card blockquote {
    margin: 16px 0 14px;
    font-size: 19px;
    line-height: 1.2;
  }

  .testimonial-tag {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .testimonial-meta {
    font-size: 14px;
  }

  .testimonial-persona {
    min-height: auto;
    padding-top: 12px;
    margin-top: 12px;
    font-size: 13.5px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .journey-tabs {
    width: 100%;
    gap: 6px;
    margin-top: 22px;
  }

  .friction-proof {
    gap: 8px;
    margin-top: 20px;
  }

  .friction-proof span {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .ease-orbit {
    display: none;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .ease-orbit-top {
    top: 28px;
    left: 4px;
  }

  .ease-orbit-bottom {
    right: 2px;
    bottom: 58px;
  }

  .tab {
    flex: 1;
    min-width: 0;
    min-height: 38px;
  }

  .phone-shell {
    width: min(100%, 280px);
    padding: 10px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 450px;
    padding: 18px;
    border-radius: 22px;
  }

  .phone-time {
    margin-bottom: 20px;
  }

  .qr-card {
    min-height: 236px;
    padding: 18px 14px;
  }

  .qr-card p {
    font-size: 23px;
  }

  .qr-pattern {
    width: 112px;
    height: 112px;
    border-width: 8px;
  }

  .phone-status {
    min-height: auto;
    padding: 14px;
    margin-top: 14px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing {
    gap: 28px;
  }

  .plan {
    padding: 22px;
  }

  .plan-badge {
    min-height: 28px;
    padding: 6px 9px;
    margin-bottom: 14px;
    font-size: 11px;
  }

  .plan-price {
    margin: 10px 0 6px;
    font-size: 44px;
  }

  .plan-note {
    min-height: auto;
  }

  .plan ul {
    gap: 9px;
    margin: 22px 0;
  }

  .plan li {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.38;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-grid article {
    padding: 20px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-width: 8px;
  }

  .feature-grid h3 {
    font-size: 20px;
  }

  .feature-grid p,
  .faq p {
    font-size: 14px;
  }

  .faq-grid {
    gap: 10px;
  }

  .faq summary {
    min-height: 76px;
    font-size: 15.5px;
  }

  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 20px;
  }

  .footer-links {
    display: grid;
    gap: 6px;
  }

  .footer-brand {
    width: 136px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
