  :root {
  	--paper: #fff8f9;
  	/* soft blush, not cream */
  	--ink: #31122b;
  	/* deep plum text        */
  	--muted: #7a5a72;
  	--rose: #e5397f;
  	/* giving accent         */
  	--rose-deep: #c11f66;
  	--plum: #7b3f82;
  	--mint: #1fae8b;
  	/* fresh secondary       */
  	--card: #ffffff;
  }

  * {
  	box-sizing: border-box
  }

  html {
  	scroll-behavior: smooth
  }

  body {
  	margin: 0;
  	background: var(--paper);
  	color: var(--ink);
  	font-family: Inter, system-ui, sans-serif;
  	line-height: 1.6;
  	-webkit-font-smoothing: antialiased;
  	background-image: radial-gradient(circle at 12% 8%, rgba(229, 57, 127, .08), transparent 42%),
  		radial-gradient(circle at 92% 2%, rgba(123, 63, 130, .09), transparent 40%)
  }

  a {
  	color: var(--rose-deep)
  }

  h1,
  h2,
  h3,
  .display {
  	font-family: "Bricolage Grotesque", system-ui, sans-serif
  }

  .wrap {
  	max-width: 1100px;
  	margin: 0 auto;
  	padding: 0 26px
  }

  .top {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	padding: 24px 0
  }

  .brand {
  	display: flex;
  	align-items: center;
  	gap: 10px;
  	font-family: "Bricolage Grotesque";
  	font-weight: 800;
  	font-size: 1.15rem
  }

  .brand .heart {
  	color: var(--rose)
  }

  .nav a {
  	color: var(--ink);
  	text-decoration: none;
  	font-weight: 600;
  	font-size: .95rem
  }

  .nav a:hover {
  	color: var(--rose-deep)
  }

  /* hero */
  .hero {
  	padding: 60px 0 10px;
  	display: grid;
  	grid-template-columns: 1.05fr .95fr;
  	gap: 40px;
  	align-items: center
  }

  .eyebrow {
  	display: inline-flex;
  	align-items: center;
  	gap: 8px;
  	background: #ffe3ee;
  	color: var(--rose-deep);
  	font-weight: 700;
  	font-size: .9rem;
  	padding: 7px 14px;
  	border-radius: 999px
  }

  .hero h1 {
  	font-size: clamp(3.2rem, 8vw, 6rem);
  	line-height: .9;
  	letter-spacing: -.03em;
  	font-weight: 800;
  	margin: .28em 0 .2em
  }

  .hero h1 .swash {
  	color: var(--rose)
  }

  .hero p {
  	max-width: 40ch;
  	font-size: 1.18rem;
  	color: #4a2743
  }

  .hero p a {
  	font-weight: 600
  }

  .cta-row {
  	display: flex;
  	gap: 14px;
  	align-items: center;
  	flex-wrap: wrap;
  	margin-top: 26px;
	margin-bottom: 16px;
  }

  .btn {
  	appearance: none;
  	border: 0;
  	cursor: pointer;
  	font: inherit;
  	text-decoration: none;
  	font-weight: 700;
  	padding: 15px 26px;
  	border-radius: 999px;
  	display: inline-flex;
  	align-items: center;
  	gap: 10px;
  	font-family: "Bricolage Grotesque";
  	transition: transform .12s, box-shadow .18s, background .18s
  }

  .btn-primary {
  	background: var(--rose);
  	color: #fff;
  	box-shadow: 0 12px 26px -12px rgba(229, 57, 127, .7)
  }

  .btn-primary:hover {
  	background: var(--rose-deep);
  	transform: translateY(-2px)
  }

  .btn-primary:active {
  	transform: translateY(0)
  }

  .btn-text {
  	color: var(--ink);
  	text-decoration: none;
  	font-weight: 700;
  	font-family: "Bricolage Grotesque"
  }

  .btn-text:hover {
  	color: var(--rose-deep)
  }

  /* hero art — one tilted screenshot */
  .heroart {
  	position: relative;
  	display: grid;
  	place-items: center;
  	min-height: 360px
  }

  .heroart .frame {
  	width: min(300px, 80%);
  	border-radius: 26px;
  	background: var(--card);
  	box-shadow: 0 30px 60px -24px rgba(49, 18, 43, .4);
  	padding: 10px;
  	transform: rotate(3deg)
  }

  .heroart .frame img {
  	display: block;
  	width: 100%;
  	border-radius: 18px
  }

  .blob {
  	position: absolute;
  	border-radius: 50%;
  	filter: blur(2px);
  	z-index: -1
  }

  .blob.a {
  	width: 150px;
  	height: 150px;
  	background: rgba(31, 174, 139, .22);
  	top: 6%;
  	left: 2%
  }

  .blob.b {
  	width: 120px;
  	height: 120px;
  	background: rgba(123, 63, 130, .2);
  	bottom: 4%;
  	right: 6%
  }

  .floatheart {
  	position: absolute;
  	font-size: 2rem;
  	color: var(--rose);
  	opacity: .85
  }

  .fh1 {
	/* top right heart */
  	top: 2%;
  	right: 12%
  }

  .fh2 {
  	bottom: 10%;
  	left: 6%;
  	font-size: 1.4rem;
  	color: var(--plum)
  }

  /* gallery */
  .gallery {
  	margin: 70px 0 20px
  }

  .gallery h2 {
  	font-size: clamp(1.8rem, 4vw, 2.4rem);
  	letter-spacing: -.02em;
  	margin: 0 0 4px
  }

  .gallery .sub {
  	color: var(--muted);
  	margin: 0 0 34px;
  	font-size: 1.05rem
  }

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

  .g {
  	background: var(--card);
  	border-radius: 22px;
  	padding: 16px 16px 8px;
  	box-shadow: 0 18px 40px -26px rgba(49, 18, 43, .45)
  }

  .g:nth-child(1) {
  	transform: rotate(-1.4deg)
  }

  .g:nth-child(3) {
  	transform: rotate(1.4deg)
  }

  .g img {
  	display: block;
  	width: 100%;
  	border-radius: 14px
  }

  .g .t {
  	padding: 16px 8px 14px
  }

  .g .t .num {
  	color: var(--rose);
  	font-family: "Bricolage Grotesque";
  	font-weight: 800
  }

  .g .t b {
  	display: block;
  	font-family: "Bricolage Grotesque";
  	font-size: 1.15rem;
  	margin: 2px 0 4px
  }

  .g .t span {
  	color: var(--muted);
  	font-size: .95rem
  }

  /* explainer */
  .explain {
  	margin: 74px 0 60px;
  	background: linear-gradient(135deg, #31122b, #5a1c52);
  	color: #fff;
  	border-radius: 30px;
  	padding: clamp(30px, 5vw, 60px);
  	position: relative;
  	overflow: hidden
  }

  .explain::after {
  	content: "💕";
  	position: absolute;
  	font-size: 9rem;
  	right: -10px;
  	bottom: -30px;
  	opacity: .14
  }

  .explain .eyebrow {
  	background: rgba(255, 255, 255, .16);
  	color: #ffd6e6
  }

  .explain h2 {
  	font-size: clamp(2rem, 5vw, 3rem);
  	letter-spacing: -.02em;
  	margin: .4em 0 .3em;
  	max-width: 16ch
  }

  .explain p {
  	max-width: 60ch;
  	font-size: 1.12rem;
  	color: #f3dcec;
  	margin: 0 0 16px
  }

  .explain p:last-child {
  	margin-bottom: 0
  }

  .explain b {
  	color: #fff
  }

  footer {
  	padding: 36px 0 60px;
  	color: var(--muted);
  	display: flex;
  	justify-content: space-between;
  	gap: 14px;
  	flex-wrap: wrap;
  	font-size: .92rem
  }

  footer a {
  	color: var(--muted);
  	text-decoration: none
  }

  footer a:hover {
  	color: var(--rose-deep)
  }

  @media(max-width:860px) {
  	.hero {
  		grid-template-columns: 1fr;
  		gap: 24px
  	}

  	.heroart {
  		min-height: 300px;
  		order: 2
  	}

  	.cards {
  		grid-template-columns: 1fr;
  		max-width: 400px;
  		margin: 0 auto
  	}

  	.g,
  	.g:nth-child(1),
  	.g:nth-child(3) {
  		transform: none
  	}
  }

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

  	.heroart .frame,
  	.g {
  		transform: none !important
  	}
  }