@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&display=swap");

:root {
  --ink: #301936;
  --muted: #6b5774;
  --soft-muted: #9a86a5;
  --line: #ead8f1;
  --page: #fff7fc;
  --lavender: #f5e9ff;
  --lavender-strong: #a66adf;
  --violet: #8f52d2;
  --berry: #d84692;
  --berry-soft: #ffe5f2;
  --apricot: #ffbf67;
  --cream: #fffdf8;
  --white: #ffffff;
  --green: #8f52d2;
  --shadow: 0 22px 55px rgba(143, 82, 210, 0.13);
  --soft-shadow: 0 14px 34px rgba(48, 25, 54, 0.07);
  --radius: 22px;
  --radius-small: 14px;
  --display: "Oleo Script", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  --body: "Avenir Next", "Nunito", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 227, 242, 0.9), transparent 34vw),
    radial-gradient(circle at 86% 16%, rgba(216, 191, 255, 0.72), transparent 31vw),
    linear-gradient(180deg, #fff8fd 0%, #fffdf8 46%, #faf2ff 100%);
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px clamp(16px, 3vw, 34px);
  background: rgba(255, 248, 253, 0.88);
  border-bottom: 1px solid rgba(234, 220, 244, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--violet);
}

.brand__logo {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

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

.notice {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid #ffd994;
  background: #fff7df;
  color: #7a4b00;
  border-radius: var(--radius-small);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 398px;
  gap: 22px;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) clamp(16px, 3vw, 32px) 72px;
  align-items: start;
}

.hero--landing {
  grid-template-columns: 1fr;
  max-width: 1220px;
}

.hero__story {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero__story::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 248, 253, 0.99) 0%, rgba(255, 248, 253, 0.97) 38%, rgba(255, 248, 253, 0.5) 62%, rgba(255, 248, 253, 0.02) 100%);
  filter: none;
  z-index: 1;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(58%, 640px);
  min-height: 690px;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 5vw, 72px) 150px;
}

.hero__copy h1 {
  max-width: 590px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.97;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #52395f;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.62;
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(255, 248, 253, 0.94);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__buy-note {
  margin: 13px 0 0;
  color: #6e4b78;
  font-size: 14px;
  font-weight: 650;
  text-shadow: 0 1px 12px rgba(255, 248, 253, 0.92);
}

.hero__quick-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 520px);
  margin-top: 16px;
}

.hero__quick-choice a {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 220, 244, 0.94);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(36, 24, 45, 0.08);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.hero__quick-choice span {
  color: var(--soft-muted);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 780;
  text-transform: uppercase;
}

.hero__quick-choice strong {
  color: var(--berry);
  font-size: 17px;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, #d94b96, #9556d8);
  border-color: rgba(124, 58, 237, 0.12);
  box-shadow: 0 14px 28px rgba(223, 63, 145, 0.25);
}

.button--primary:hover {
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.28);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--white);
  background: var(--berry);
}

.button--full {
  width: 100%;
}

.mobile-cta {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__media::after {
  display: none;
}

.hero__facts {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 72px);
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(24px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero__facts div {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 220, 244, 0.95);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(36, 24, 45, 0.08);
  backdrop-filter: blur(14px);
}

.hero__facts dt {
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.checkout-card {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 220, 244, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 28px 24px 24px;
  backdrop-filter: blur(16px);
}

.checkout-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.checkout-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 400;
}

.checkout-card__head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-card__delivery,
.checkout-product__delivery,
.set-card__delivery {
  display: block;
  margin: 8px 0 0;
  color: var(--berry);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.price {
  color: var(--berry);
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.digital-addon {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 0 0 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf6;
  border: 1px solid #edd9ad;
  border-radius: 16px;
  cursor: pointer;
}

.digital-addon input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--berry);
}

.digital-addon strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.digital-addon small {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.digital-addon__prices {
  display: inline-flex;
  gap: 7px;
  white-space: nowrap;
}

.digital-addon__prices span {
  color: var(--berry);
  font-weight: 700;
}

.digital-addon__prices del {
  color: #8a7b89;
}

.quantity-row label,
.coupon label,
.form-grid label,
.note-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 520;
  text-transform: uppercase;
}

.checkout-section {
  margin-top: 18px;
}

.checkout-section h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 740;
}

.stepper {
  display: grid;
  grid-template-columns: 40px 58px 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.stepper__btn {
  border: 0;
  background: var(--lavender);
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 650;
}

.stepper input {
  width: 58px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 500;
}

.summary {
  display: grid;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(180deg, #fff8fd, #f8efff);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 16px;
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.summary strong {
  color: var(--ink);
  font-weight: 500;
}

.summary__total {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 16px !important;
  font-weight: 580;
}

.coupon {
  margin-bottom: 16px;
}

.coupon__line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.coupon__line::before {
  display: none;
}

.coupon input,
.form-grid input,
.note-label textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
  outline: none;
}

.coupon input:focus,
.form-grid input:focus,
.note-label textarea:focus {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.coupon.is-applied .coupon__line {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 7px;
  padding: 4px 4px 4px 10px;
  border: 1px solid #bfe8cc;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6fff8, #eefbf4);
  box-shadow: 0 10px 24px rgba(47, 122, 69, 0.08);
}

.coupon.is-applied .coupon__line::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f7a45;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.coupon.is-applied input {
  min-width: 0;
  min-height: 38px;
  border-color: transparent;
  background: transparent;
  color: #27583b;
  font-weight: 720;
  padding: 8px 4px;
  cursor: default;
}

.coupon.is-applied input:focus {
  border-color: transparent;
  box-shadow: none;
}

.coupon.has-error input {
  border-color: rgba(216, 70, 146, 0.72);
}

.coupon button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.coupon.is-applied button {
  min-height: 38px;
  border-color: rgba(47, 122, 69, 0.24);
  background: var(--white);
  color: #27583b;
  padding: 0 13px;
}

.coupon.is-applied button:hover {
  border-color: rgba(47, 122, 69, 0.58);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.form-grid label,
.note-label {
  display: grid;
  gap: 6px;
}

.note-label {
  margin: 11px 0 16px;
}

.note-label textarea {
  resize: vertical;
}

.legal-checks {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.legal-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--berry);
}

.legal-check a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-trust {
  display: grid;
  gap: 7px;
  margin: 13px 0 0;
  padding: 12px 14px;
  color: #5e4868;
  background: rgba(255, 248, 253, 0.78);
  border: 1px solid rgba(234, 216, 241, 0.9);
  border-radius: 16px;
  list-style: none;
  font-size: 13px;
  line-height: 1.35;
}

.checkout-trust li {
  position: relative;
  padding-left: 19px;
}

.checkout-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--berry);
  font-weight: 800;
}

.form-message {
  min-height: 18px;
  margin: 7px 0 0;
  color: var(--berry);
  font-size: 13px;
  font-weight: 620;
  text-transform: none;
}

.form-message--success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 9px;
  color: #2f7a45;
  background: #f2fff6;
  border: 1px solid #c8efd5;
  border-radius: 999px;
}

.form-message--success::before {
  content: "✓";
  font-weight: 800;
}

.form-message--error {
  color: var(--berry);
}

.moment-section,
.gallery-section,
.founder-note,
.mood-section,
.set-section,
.offer-section,
.buy-strip,
.details,
.faq-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 74px clamp(16px, 3vw, 32px);
}

.offer-section {
  padding-top: 18px;
  padding-bottom: 44px;
}

.moment-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.moment__image img,
.details__media img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.moment__copy h2,
.section-heading h2,
.details__copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.moment__copy p,
.section-heading p,
.details__copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.soft-list div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(234, 220, 244, 0.88);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(36, 24, 45, 0.06);
}

.soft-list strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
}

.soft-list span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
}

.section-heading--compact {
  align-items: center;
  margin-bottom: 18px;
}

.section-heading--compact h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 50px);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.9fr) minmax(240px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.offer-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.offer-card--print {
  grid-template-columns: minmax(140px, 0.62fr) minmax(0, 1fr);
}

.offer-card--bundle {
  background: linear-gradient(135deg, #fff5df 0%, #fffafd 48%, #f4ecff 100%);
  border-color: rgba(236, 191, 104, 0.72);
}

.offer-card--digital {
  background: rgba(255, 255, 255, 0.72);
}

.offer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.offer-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(18px, 2.4vw, 26px);
}

.offer-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #6f3b78;
  background: rgba(255, 229, 242, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.offer-card--bundle .offer-card__eyebrow {
  color: #7b4a13;
  background: #fff0c9;
}

.offer-card h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  font-weight: 400;
}

.offer-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  margin: auto 0 16px;
  padding-top: 20px;
}

.offer-card__price strong {
  color: var(--berry);
  font-size: 25px;
  line-height: 1;
}

.offer-card__price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.gallery-section {
  padding-top: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(170px, 16vw, 220px);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(234, 220, 244, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.gallery-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(36, 24, 45, 0.09);
  backdrop-filter: blur(14px);
  font-weight: 650;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 54px;
}

.founder-note__portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
}

.founder-note__portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 70, 146, 0.25), rgba(143, 82, 210, 0.2));
  transform: rotate(-5deg);
  z-index: -1;
}

.founder-note__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.founder-note__bubble {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(234, 220, 244, 0.94);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--soft-shadow);
}

.founder-note__bubble::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 44%;
  width: 34px;
  height: 34px;
  background: inherit;
  border-left: 1px solid rgba(234, 220, 244, 0.94);
  border-bottom: 1px solid rgba(234, 220, 244, 0.94);
  transform: rotate(45deg);
}

.founder-note__eyebrow {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.founder-note__bubble h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.founder-note__bubble p:not(.founder-note__eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.mood-grid figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(234, 220, 244, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.mood-grid figure:first-child {
  grid-row: span 2;
}

.mood-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.mood-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(36, 24, 45, 0.09);
  backdrop-filter: blur(14px);
  font-weight: 650;
}

.set-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.coming-soon-panel {
  margin-top: 26px;
  padding: clamp(16px, 2.8vw, 26px);
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(236, 191, 104, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(80, 52, 21, 0.06);
}

.coming-soon-panel__head {
  display: grid;
  gap: 7px;
  max-width: 760px;
  margin-bottom: 18px;
}

.coming-soon-panel__head span {
  color: #8c571b;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-soon-panel__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.02;
  font-weight: 400;
}

.coming-soon-panel__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.set-grid--coming-soon {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.set-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.set-card--coming-soon {
  border-color: rgba(225, 185, 112, 0.72);
}

.set-card.is-selected {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12), var(--soft-shadow);
}

.set-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--lavender);
}

.set-card--coming-soon img {
  filter: saturate(0.82);
}

.set-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #7b4a13;
  background: rgba(255, 245, 223, 0.94);
  border: 1px solid rgba(236, 191, 104, 0.82);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(80, 52, 21, 0.09);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.set-card__body {
  padding: 20px;
}

.set-card h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1.02;
  font-weight: 400;
}

.set-card p {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.set-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 13px;
}

.set-card__meta span {
  padding: 6px 10px;
  background: var(--berry-soft);
  border-radius: 999px;
  color: #71415d;
  font-weight: 560;
}

.set-card__meta strong {
  color: var(--berry);
  font-size: 18px;
  font-weight: 700;
}

.set-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.set-card__actions--single {
  grid-template-columns: 1fr;
}

.set-card__actions .button,
.express-button {
  width: 100%;
  min-height: 40px;
}

.set-card__notify-button {
  color: #7b4a13;
  background: #fff5df;
  border-color: rgba(236, 191, 104, 0.7);
  box-shadow: none;
}

.set-card__notify-button:hover {
  box-shadow: 0 12px 22px rgba(80, 52, 21, 0.1);
}

.notify-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 248, 235, 0.78);
  border: 1px solid rgba(236, 191, 104, 0.58);
  border-radius: 18px;
}

.notify-form[hidden] {
  display: none;
}

.notify-form__fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  min-width: 0;
}

.notify-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 680;
}

.notify-form input[type="text"],
.notify-form input[type="email"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(225, 185, 112, 0.68);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
}

.notify-form input[type="text"]:focus,
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.notify-form__check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.45;
  font-weight: 520 !important;
}

.notify-form__check input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--berry);
}

.notify-form__check a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notify-form .form-message {
  min-width: 0;
  overflow-wrap: anywhere;
}

.notify-form .form-message--success {
  width: 100%;
  border-radius: 14px;
}

.express-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.express-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36, 24, 45, 0.08);
}

.express-button--paypal {
  border-color: #ffc439;
  background: #ffc439;
  color: #17346a;
}

.express-button--klarna {
  border-color: #ffb3c7;
  background: #ffb3c7;
  color: #241116;
}

.set-card__hint {
  min-height: 17px !important;
  margin: 9px 0 0 !important;
  color: var(--berry) !important;
  font-size: 13px;
  font-weight: 620;
}

.checkout-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(22px, 4vw, 54px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 68px) clamp(16px, 3vw, 32px) 80px;
  align-items: start;
}

.checkout-intro h1 {
  max-width: 620px;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 400;
}

.checkout-intro > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.payment-methods,
.checkout-payment-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-methods {
  margin-top: 18px;
}

.checkout-payment-note {
  justify-content: center;
  margin-top: 12px;
}

.payment-methods span,
.checkout-payment-note span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #5d3b67;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 216, 241, 0.94);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.checkout-product {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  max-width: 520px;
  margin-top: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.checkout-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.checkout-product span {
  display: block;
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.checkout-product strong {
  display: block;
  margin-top: 6px;
  color: var(--berry);
  font-size: 22px;
}

.checkout-product p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.checkout-details {
  max-width: 560px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.checkout-details h2,
.checkout-details h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 760;
}

.checkout-details h3 {
  margin-top: 16px;
  font-size: 16px;
}

.checkout-details p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.checkout-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.checkout-detail-grid div {
  min-width: 0;
  padding: 11px 12px;
  background: rgba(255, 248, 253, 0.78);
  border: 1px solid rgba(234, 220, 244, 0.86);
  border-radius: 14px;
}

.checkout-detail-grid span {
  display: block;
  color: var(--soft-muted);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 780;
  text-transform: uppercase;
}

.checkout-detail-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

.checkout-recipe-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.checkout-recipe-list li {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.checkout-recipe-list li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--berry);
  font-weight: 800;
}

.details {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.details__copy p {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.detail-list div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 220, 244, 0.88);
  border-radius: 18px;
}

.detail-list span {
  display: block;
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.detail-list strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
  font-weight: 560;
}

.details__copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.recipe-list {
  columns: 2;
  gap: 28px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.recipe-list li {
  break-inside: avoid;
  margin: 0 0 7px;
}

.buy-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.buy-strip > div:first-child {
  min-width: 0;
}

.buy-strip span {
  color: var(--soft-muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.buy-strip h2 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 400;
}

.buy-strip p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.buy-strip__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-section {
  padding-top: 42px;
}

.faq-section .section-heading {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 220, 244, 0.9);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.68;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 28px;
  border-top: 1px solid rgba(234, 220, 244, 0.9);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

.site-footer a:hover {
  color: var(--berry);
}

.sticky-buy-bar {
  display: none;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 227, 242, 0.8), transparent 38vw),
    linear-gradient(180deg, #fff8fd, #fffdf8);
}

.thank-you {
  width: min(100%, 620px);
  padding: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(234, 220, 244, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thank-you__brand {
  margin-bottom: 24px;
}

.thank-you h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 400;
}

.thank-you p {
  color: var(--muted);
  line-height: 1.6;
}

.thank-you__box {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.thank-you__line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}

.thank-you__line:last-child {
  border-bottom: 0;
}

.thank-you__line--total {
  background: var(--lavender);
  font-weight: 700;
}

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

  .checkout-card {
    align-self: stretch;
  }
}

@media (max-width: 980px) {
  .moment-section,
  .founder-note,
  .details {
    grid-template-columns: 1fr;
  }

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

  .offer-card--print {
    grid-column: 1 / -1;
  }

  .founder-note__bubble::before {
    left: calc(50% - 17px);
    top: -18px;
    border-left: 1px solid rgba(234, 220, 244, 0.94);
    border-top: 1px solid rgba(234, 220, 244, 0.94);
    border-bottom: 0;
  }

  .hero__story {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero__story::before {
    display: none;
  }

  .hero__media {
    position: relative;
    order: -1;
  }

  .hero__media img {
    min-height: 420px;
    max-height: 560px;
  }

  .hero__media::after {
    display: none;
  }

  .hero__copy {
    width: 100%;
    min-height: auto;
    padding-bottom: 150px;
  }

  .mood-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .checkout-page-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 28vw, 260px);
  }

  .gallery-card--feature,
  .gallery-card--wide {
    grid-column: span 2;
  }

  .mood-grid figure:first-child {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

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

  .hero__story,
  .checkout-card,
  .moment__image img,
  .details__media img,
  .gallery-card,
  .mood-grid figure,
  .set-card {
    border-radius: 20px;
  }

  .hero__copy {
    padding: 26px 22px 28px;
  }

  .hero__quick-choice {
    grid-template-columns: 1fr;
  }

  .hero__quick-choice a {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 48px;
  }

  .hero__copy h1 {
    font-size: 38px;
    line-height: 0.98;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.52;
  }

  .hero__media img {
    min-height: 238px;
    max-height: 270px;
  }

  .hero__facts {
    position: static;
    margin: 20px 22px 22px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(234, 220, 244, 0.95);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(36, 24, 45, 0.07);
    backdrop-filter: blur(14px);
  }

  .hero__facts div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__facts div + div {
    border-top: 1px solid rgba(234, 220, 244, 0.82);
    border-radius: 0;
  }

  .hero__facts dt {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .hero__facts dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    text-align: right;
  }

  .button {
    width: 100%;
  }

  .mobile-cta {
    display: block;
    margin-top: 18px;
  }

  .mobile-cta--copy {
    margin-top: 22px;
  }

  .form-grid,
  .detail-list,
  .set-card__actions {
    grid-template-columns: 1fr;
  }

  .moment-section,
  .gallery-section,
  .founder-note,
  .mood-section,
  .set-section,
  .offer-section,
  .buy-strip,
  .details,
  .faq-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .offer-section {
    padding-top: 10px;
  }

  .offer-grid,
  .offer-card--print {
    grid-template-columns: 1fr;
  }

  .offer-card--print {
    grid-column: auto;
  }

  .offer-card__media img {
    min-height: 210px;
    max-height: 280px;
  }

  .offer-card__body {
    padding: 20px;
  }

  .offer-card__price {
    margin-top: 4px;
  }

  .offer-card .button {
    margin-top: 2px;
  }

  .sticky-buy-bar {
    position: fixed;
    z-index: 20;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(234, 220, 244, 0.95);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(48, 25, 54, 0.18);
    backdrop-filter: blur(18px);
  }

  .sticky-buy-bar span {
    min-width: 0;
    color: var(--ink);
    font-size: 13px;
    font-weight: 760;
    line-height: 1.2;
  }

  .sticky-buy-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    min-height: 40px;
    padding: 0 12px;
    color: var(--white);
    background: var(--berry);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 760;
  }

  .sticky-buy-bar a:first-of-type {
    color: var(--ink);
    background: var(--lavender);
  }

  .checkout-page .sticky-buy-bar,
  .simple-page .sticky-buy-bar {
    display: none;
  }

  .buy-strip {
    display: grid;
    gap: 18px;
  }

  .buy-strip__actions {
    justify-content: stretch;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .moment__copy h2,
  .founder-note__bubble h2,
  .details__copy h2 {
    font-size: 34px;
  }

  .founder-note {
    padding-top: 40px;
  }

  .founder-note__portrait {
    width: min(76vw, 260px);
  }

  .founder-note__bubble {
    padding: 24px 22px;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card--feature,
  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

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

  .coupon.is-applied .coupon__line {
    grid-template-columns: 24px minmax(0, 1fr) auto;
  }

  .checkout-details {
    padding: 16px;
  }

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

  .recipe-list {
    columns: 1;
  }

  .site-footer {
    text-align: center;
  }
}
