:root {
  --pink: #f4bac8;
  --pink-deep: #df8097;
  --cream: #fff9f4;
  --paper: #fffdf9;
  --blue: #bfd9e6;
  --mint: #bfdcce;
  --yellow: #f8d98b;
  --gold: #d9b46f;
  --ink: #58616d;
  --ink-soft: #7a7f88;
  --line: rgba(217, 180, 111, .34);
  --shadow: 0 22px 70px rgba(111, 82, 76, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 7%, rgba(244,186,200,.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(191,217,230,.22), transparent 26%),
    var(--cream);
  font-family: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { padding: 0; }

.bg-decor { position: fixed; z-index: -1; pointer-events: none; opacity: .45; filter: blur(1px); }
.bg-one { width: 420px; height: 420px; left: -170px; bottom: -100px; background: url('/static/assets/watercolor_cloud.webp') center/contain no-repeat; }
.bg-two { width: 320px; height: 320px; right: -100px; top: 24%; background: url('/static/assets/sparkles.webp') center/contain no-repeat; opacity: .18; }

.site-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 28px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { display: block; width: 188px; height: auto; }
.header-link {
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(223,128,151,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-weight: 700;
  font-size: 14px;
}

main { overflow: hidden; }
.hero {
  width: min(1240px, calc(100% - 48px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: 58px;
  align-items: start;
}
.hero-copy { padding: 45px 0 0; position: sticky; top: 20px; }
.eyebrow {
  display: inline-flex;
  color: #b8884d;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #6d7280;
}
h1 {
  margin: 18px 0 20px;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -.045em;
}
h1 em { color: #e17791; font-style: normal; }
.hero-text { max-width: 680px; color: #696e77; font-size: 17px; line-height: 1.7; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; }
.trust-row span { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.68); border: 1px solid rgba(217,180,111,.28); font-size: 13px; }
.hero-art { height: 330px; position: relative; margin-top: 18px; }
.hero-box { position: absolute; left: 0; bottom: 0; width: min(390px, 72%); filter: drop-shadow(0 18px 24px rgba(118,87,82,.11)); }
.hero-bidi { position: absolute; width: 130px; right: 12%; bottom: 20px; filter: drop-shadow(0 16px 18px rgba(118,87,82,.12)); }

.order-card {
  position: relative;
  background: rgba(255,253,249,.88);
  border: 1px solid rgba(217,180,111,.3);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 30px;
  backdrop-filter: blur(18px);
}
.order-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(244,186,200,.16);
  border-radius: 27px;
}
.stepper { display: flex; justify-content: center; align-items: center; margin-bottom: 22px; position: relative; z-index: 1; }
.step-dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #f1ece8; color: #9f9a96; font-size: 12px; font-weight: 800; transition: .2s ease; }
.step-dot.is-active { background: var(--pink); color: white; box-shadow: 0 5px 15px rgba(223,128,151,.27); }
.step-line { width: 64px; height: 1px; background: #e7ded8; }
.form-step { display: none; position: relative; z-index: 1; }
.form-step.is-active { display: block; animation: appear .22s ease; }
@keyframes appear { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.form-heading { text-align: center; margin-bottom: 25px; }
.form-heading .mini { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: #b29a83; font-weight: 800; }
.form-heading h2 { margin: 7px 0 5px; color: #69717d; font-size: 32px; letter-spacing: -.025em; }
.form-heading p { margin: 0; color: #91949a; font-size: 14px; }

.field-grid.two { display: grid; grid-template-columns: 1.6fr .8fr; gap: 12px; }
.field { display: block; margin-bottom: 18px; }
.field > span, .label-title, legend { display: block; color: #646a73; font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.field em { font-style: normal; color: #a6a1a1; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #e8ded8;
  outline: none;
  background: rgba(255,255,255,.86);
  border-radius: 14px;
  padding: 14px 15px;
  color: #515862;
  transition: border .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 72px; }
.field input:focus, .field textarea:focus { border-color: #e8a9b8; box-shadow: 0 0 0 4px rgba(244,186,200,.16); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #b7b1ae; }
.choice-block { margin: 4px 0 22px; }
.choice-block > legend { margin-bottom: 11px; }
.hint { margin: -6px 0 10px; font-size: 12px; color: #a3a0a0; }

.spoon-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.spoon-card {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 18px 8px 14px;
  border: 1px solid #e9dfd9;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  text-align: center;
  transition: .18s ease;
  cursor: pointer;
}
.spoon-card:hover { transform: translateY(-2px); border-color: #e7b9c4; }
.spoon-card:has(input:checked) { border-color: #e49aae; background: linear-gradient(180deg, #fff, #fff4f6); box-shadow: 0 7px 22px rgba(222,127,151,.12); }
.spoon-card input { position: absolute; opacity: 0; pointer-events: none; }
.spoon-visual { display: grid; place-items: center; width: 100%; height: 55px; position: relative; }
.spoon-visual img { width: 105px; max-width: 100%; height: 45px; object-fit: contain; }
.spoon-visual b { position: absolute; right: 5px; top: -2px; width: 23px; height: 23px; border-radius: 50%; background: var(--pink); color: white; display: grid; place-items: center; font-size: 11px; }
.spoon-title { font-weight: 850; font-size: 14px; color: #616772; margin-top: 4px; }
.spoon-sub { color: #9b9898; font-size: 10px; min-height: 29px; margin-top: 3px; line-height: 1.35; }
.spoon-card strong { color: #d97992; margin-top: 5px; font-size: 15px; }
.popular-badge { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 9px; font-weight: 800; color: #9b6b31; background: #fff1c9; padding: 3px 8px; border-radius: 999px; }

.mix-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 4px 0 22px; padding: 15px; border: 1px dashed rgba(217,180,111,.4); border-radius: 18px; background: rgba(255,248,234,.46); }
.mix-row small { display: block; max-width: 330px; color: #999; font-size: 11px; line-height: 1.45; }
.label-title { margin-bottom: 2px; }
.counter { display: grid; grid-template-columns: 38px 42px 38px; align-items: center; border-radius: 999px; background: white; border: 1px solid #eadfd9; padding: 3px; flex: 0 0 auto; }
.counter button { height: 34px; border: 0; background: #fff5f6; border-radius: 50%; color: #d77991; font-size: 20px; line-height: 1; }
.counter output { text-align: center; font-weight: 850; }

.color-options { display: flex; gap: 7px; flex-wrap: wrap; }
.color-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #e8dfdc; border-radius: 999px; background: white; padding: 7px 10px; font-size: 11px; color: #737780; transition: .15s; }
.color-chip i { width: 14px; height: 14px; border-radius: 50%; background: var(--chip); border: 1px solid rgba(80,80,80,.12); box-shadow: inset 0 1px 2px rgba(255,255,255,.7); }
.color-chip.is-selected { border-color: #df8da2; background: #fff3f6; color: #c85f7b; box-shadow: 0 3px 10px rgba(223,128,151,.09); }
.custom-color { margin: 12px 0 0; }
.custom-color > span { font-weight: 650; color: #8c8b8c; font-size: 11px; }
.custom-color input { padding: 11px 13px; }

.primary-btn, .ghost-btn {
  min-height: 51px;
  border-radius: 15px;
  font-weight: 850;
  border: 0;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}
.primary-btn { width: 100%; color: white; background: linear-gradient(135deg, #eea3b4, #dd7d96); box-shadow: 0 10px 24px rgba(219,115,141,.23); }
.primary-btn:hover { transform: translateY(-1px); box-shadow: 0 13px 27px rgba(219,115,141,.28); }
.primary-btn:disabled { opacity: .6; cursor: wait; transform: none; }
.primary-btn span { margin-left: 6px; }
.ghost-btn { color: #7a7472; background: #f5efec; padding: 0 18px; }

.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.delivery-options label { cursor: pointer; }
.delivery-options input { position: absolute; opacity: 0; }
.delivery-options span { display: flex; flex-direction: column; min-height: 66px; justify-content: center; border: 1px solid #e8ded8; border-radius: 15px; padding: 11px 13px; background: rgba(255,255,255,.8); transition: .15s; }
.delivery-options input:checked + span { border-color: #dc8ca1; box-shadow: 0 0 0 3px rgba(244,186,200,.13); background: #fff8fa; }
.delivery-options b { font-size: 13px; }
.delivery-options small { color: #999; font-size: 10px; margin-top: 2px; }
.summary { margin: 3px 0 16px; padding: 13px 15px; border-radius: 15px; background: linear-gradient(135deg, rgba(244,186,200,.14), rgba(191,217,230,.14)); color: #6f737a; font-size: 12px; line-height: 1.55; }
.summary strong { color: #d56d88; }
.check-row { display: flex; gap: 9px; align-items: flex-start; margin: 10px 0; color: #818188; font-size: 11px; cursor: pointer; }
.check-row input { margin-top: 2px; accent-color: #df8097; }
.check-row a { color: #c2667c; }
.captcha-container { min-height: 1px; }
.captcha-note { margin: 11px 0 0; color: #aaa3a0; font-size: 10px; text-align: center; }
.action-row { display: grid; grid-template-columns: 100px 1fr; gap: 9px; margin-top: 15px; }
.submit-note { text-align: center; color: #a29e9d; font-size: 10px; margin: 10px 0 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.success-state { position: relative; z-index: 1; min-height: 510px; display: grid; place-items: center; align-content: center; text-align: center; padding: 20px; }
.success-state[hidden] { display: none; }
.success-state img { width: 150px; margin-bottom: 10px; }
.success-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #cfe5d8; color: #55806b; font-weight: 900; margin-bottom: 8px; }
.success-state h2 { font-size: 32px; margin: 4px 0; }
.success-state p { margin: 6px 0; }
.success-state .muted { color: #959595; max-width: 360px; font-size: 13px; }
.success-state .ghost-btn { margin-top: 15px; }

.how-it-works { width: min(1160px, calc(100% - 48px)); margin: 105px auto 90px; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 35px; }
.section-head h2 { font-size: 44px; margin: 8px 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.how-grid article { padding: 24px 20px; border-radius: 22px; border: 1px solid rgba(217,180,111,.25); background: rgba(255,255,255,.55); }
.how-grid article > span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff1f4; color: #d7738c; font-weight: 900; font-size: 11px; margin-bottom: 16px; }
.how-grid b { display: block; color: #626873; font-size: 15px; }
.how-grid p { color: #8f9195; font-size: 12px; line-height: 1.55; margin-bottom: 0; }

footer { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 26px 0 38px; border-top: 1px solid rgba(217,180,111,.25); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
footer > img { width: 46px; height: 46px; object-fit: contain; }
footer div { display: flex; flex-direction: column; }
footer strong { font-family: Georgia, serif; color: #df8097; }
footer span { font-size: 10px; color: #aaa; }
footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
footer nav a { color: #8d8d8d; font-size: 10px; }

.cookie-banner { position: fixed; z-index: 20; left: 18px; right: 18px; bottom: max(18px, env(safe-area-inset-bottom)); max-width: 660px; margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; background: rgba(255,253,249,.96); border: 1px solid rgba(217,180,111,.35); box-shadow: 0 16px 50px rgba(80,70,70,.18); border-radius: 18px; padding: 14px 16px; backdrop-filter: blur(14px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner b { font-size: 12px; }
.cookie-banner p { margin: 3px 0 0; color: #929292; font-size: 10px; }
.cookie-banner a { color: #c66a80; }
.cookie-banner button { border: 0; border-radius: 999px; background: #f0a5b5; color: white; font-weight: 800; padding: 9px 14px; }
.toast { position: fixed; z-index: 30; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; max-width: min(500px, calc(100% - 30px)); padding: 11px 15px; border-radius: 13px; background: #5c6067; color: white; box-shadow: 0 12px 30px rgba(0,0,0,.18); font-size: 12px; transition: .2s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.loading { position: fixed; z-index: 50; inset: 0; display: grid; place-items: center; align-content: center; gap: 12px; background: rgba(255,249,244,.72); backdrop-filter: blur(4px); color: #777; font-weight: 800; font-size: 12px; }
.loading[hidden] { display: none; }
.spinner { width: 34px; height: 34px; border: 3px solid #f0d7dd; border-top-color: #df8097; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; max-width: 690px; gap: 24px; margin-top: 10px; }
  .hero-copy { position: static; padding-top: 28px; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .trust-row { justify-content: center; }
  .hero-art { height: 280px; max-width: 600px; margin-left: auto; margin-right: auto; width: 100%; }
  .hero-box { left: 8%; }
  .hero-bidi { right: 10%; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 16px 4px; }
  .brand img { width: 145px; }
  .header-link { font-size: 12px; padding: 8px 13px; }
  .hero { width: min(100% - 24px, 520px); margin-top: 0; }
  .hero-copy { padding-top: 25px; }
  h1 { font-size: clamp(40px, 12vw, 55px); line-height: 1.01; margin-top: 12px; }
  .hero-text { font-size: 14px; line-height: 1.6; }
  .trust-row { gap: 6px; }
  .trust-row span { font-size: 10px; padding: 7px 9px; }
  .hero-art { height: 225px; }
  .hero-box { width: 78%; left: -2%; }
  .hero-bidi { width: 105px; right: 4%; bottom: 15px; }

  .order-card { border-radius: 27px; padding: 22px 15px 18px; }
  .order-card::before { inset: 5px; border-radius: 23px; }
  .form-heading h2 { font-size: 26px; }
  .field-grid.two { grid-template-columns: 1fr; gap: 0; }
  .field { margin-bottom: 14px; }
  .field input, .field textarea { font-size: 16px; /* avoids iOS input zoom */ }
  .spoon-options { gap: 6px; }
  .spoon-card { padding: 17px 4px 11px; border-radius: 15px; }
  .spoon-visual img { width: 83px; }
  .spoon-title { font-size: 12px; }
  .spoon-sub { font-size: 8px; min-height: 24px; }
  .spoon-card strong { font-size: 12px; }
  .popular-badge { font-size: 7px; padding: 3px 5px; top: -8px; }
  .mix-row { align-items: flex-start; padding: 13px; }
  .mix-row small { font-size: 9px; }
  .counter { grid-template-columns: 34px 35px 34px; }
  .counter button { height: 30px; }
  .color-options { gap: 6px; }
  .color-chip { padding: 7px 9px; font-size: 10px; }
  .delivery-options { grid-template-columns: 1fr 1fr; gap: 7px; }
  .delivery-options span { min-height: 61px; padding: 9px 10px; }
  .action-row { grid-template-columns: 86px 1fr; }
  .primary-btn, .ghost-btn { min-height: 49px; }

  .how-it-works { width: calc(100% - 24px); margin: 70px auto 60px; }
  .section-head h2 { font-size: 34px; }
  .how-grid { grid-template-columns: 1fr; gap: 9px; }
  .how-grid article { display: grid; grid-template-columns: 38px 1fr; column-gap: 10px; padding: 16px; }
  .how-grid article > span { grid-row: span 2; margin: 0; }
  .how-grid p { margin-top: 3px; }
  footer { width: calc(100% - 28px); grid-template-columns: auto 1fr; }
  footer nav { grid-column: 1 / -1; justify-content: flex-start; gap: 10px 13px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 9px; left: 10px; right: 10px; padding: 13px; }
  .cookie-banner button { width: 100%; }
}

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