:root {
  --cream: #f8f4ec;
  --cream-deep: #efe8dc;
  --ink: #3a2c45;
  --ink-soft: #5c4d66;
  --green: #2f6b4f;
  --green-deep: #24563e;
  --green-pale: #e7efe8;
  --lilac: #ece4f4;
  --lilac-deep: #e3d8ef;
  --blush: #f4ddd8;
  --white: #fffdf9;
  --line: rgba(58, 44, 69, 0.1);
  --shadow: 0 18px 50px rgba(58, 44, 69, 0.08);
  --radius: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, .display {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); color: var(--ink); }
.muted { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 750;
  font-size: 0.98rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(58, 44, 69, 0.16);
}
.icon { width: 18px; height: 18px; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 236, 0.9);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--green);
}
.logo strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.logo span {
  display: block;
  font-size: 0.68rem;
  color: #8a7b90;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.95rem;
}
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.4rem;
  color: var(--ink);
}

.hero { padding: 28px 0 18px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}
.hero h1 .line-green { color: var(--green); display: block; }
.hero p.lead {
  max-width: 430px;
  margin: 22px 0 28px;
  font-size: 1.05rem;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.handwrite {
  font-family: Caveat, cursive;
  color: #9a6b5a;
  font-size: 1.45rem;
  transform: rotate(-6deg);
  line-height: 1.1;
}
.hero-meta {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}
.hero-art { position: relative; }
.hero-frame {
  background: linear-gradient(#f7efe4, #f3e8d8);
  border-radius: 42px;
  overflow: hidden;
  min-height: 430px;
}
.hero-frame img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center 18%;
}
.bubble {
  position: absolute;
  border: 0;
  border-radius: 22px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  z-index: 2;
}
.bubble small {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 230px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
  text-align: left;
  z-index: 3;
}
.bubble.open small { display: block; }
.bubble-lilac { background: #eadcf3; top: 18px; left: 8%; }
.bubble-sand { background: #f4ead0; top: 42%; right: -6px; }
.bubble-rose { background: #f3d7df; bottom: 56px; left: 6%; }
.star {
  position: absolute;
  top: 22px;
  right: 8%;
  color: #e9c46a;
  font-size: 1.4rem;
}
.hint {
  margin-top: 12px;
  text-align: center;
  color: #8a7b90;
  font-size: 0.86rem;
}

.trust {
  margin-top: 28px;
  background: #f1ece4;
  border-top: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 72px;
  align-items: center;
  text-align: center;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section { padding: 88px 0; }
.center { text-align: center; }
.center .eyebrow, .center p { max-width: 560px; margin-left: auto; margin-right: auto; }
.center h2 { margin: 10px 0 16px; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 56px;
}
.step { text-align: center; }
.step-ico {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 1.7rem;
}
.step-ico b {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
}
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--ink-soft); max-width: 240px; margin: 0 auto; }
.arrow { color: #c9bfb3; align-self: center; font-size: 1.4rem; padding-top: 28px; }

.sample { background: var(--lilac); border-radius: 48px 48px 0 0; }
.sample-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}
.pages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.page-card {
  background: none;
  border: 0;
  text-align: left;
  color: inherit;
}
.page-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(58, 44, 69, 0.12);
  transition: transform .2s ease;
}
.page-card:hover img { transform: translateY(-6px) rotate(-1deg); }
.page-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.92rem;
}
.sample-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 44, 69, 0.1);
}
.dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; margin-right: 8px; }

.family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.note-img {
  width: min(430px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(58, 44, 69, 0.12));
}
.checks { list-style: none; margin: 22px 0 28px; }
.checks li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: var(--ink-soft);
}
.checks li::before { content: "✓"; color: var(--green); font-weight: 800; }
.link-green { color: var(--green); font-weight: 800; }

.collection { background: var(--green-pale); }
.collection-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--green);
  font-weight: 750;
}
.themes span { color: #7d9b88; font-weight: 700; margin-right: 8px; }
.price-card {
  background: var(--white);
  border-radius: 32px;
  padding: 28px 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.badge {
  display: inline-block;
  background: #f3ead8;
  color: #8a6a32;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 10px;
}
.seal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f6e7b8;
  display: grid;
  place-items: center;
}
.price {
  font-family: Fraunces, serif;
  font-size: 3.2rem;
  color: var(--green);
  line-height: 1;
  margin: 8px 0;
}
.price small { font-size: 1.2rem; vertical-align: super; }
.price-card ul { list-style: none; margin: 18px 0; }
.price-card li { margin: 8px 0; color: var(--ink-soft); }
.price-card li::before { content: "✓  "; color: var(--green); font-weight: 800; }
.notice {
  background: #f4efe6;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.price-card .btn { width: 100%; }
.pay-note { text-align: center; color: #8a7b90; font-size: 0.82rem; margin-top: 10px; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--ink);
}
.faq-item p {
  display: none;
  padding: 0 8px 18px;
  color: var(--ink-soft);
  max-width: 560px;
}
.faq-item.open p { display: block; }

.final {
  background: var(--blush);
  border-radius: 48px 48px 0 0;
  text-align: center;
  padding: 86px 20px 72px;
}
.heart-badge {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f8ebe7;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.final p { margin: 14px auto 24px; max-width: 420px; color: var(--ink-soft); }
.tiny { display: block; margin-top: 10px; font-size: 0.82rem; color: #8a7b90; }

.site-footer { padding: 34px 0 22px; }
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.footer-copy { color: var(--ink-soft); }
.footer-copy strong { display: block; color: var(--ink); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  color: #8a7b90;
  font-size: 0.82rem;
  padding-top: 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(35, 24, 42, 0.72);
  display: none;
  place-items: center;
  z-index: 50;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links, .nav .btn-ghost { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
  }
  .hero-grid, .sample-head, .family, .collection-grid, .faq-grid, .footer-row {
    grid-template-columns: 1fr;
  }
  .pages { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .arrow { display: none; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 0; }
  .hero-frame img { height: 340px; }
  .bubble-sand { right: 8px; }
  h1 { font-size: 2.5rem; }
  .section { padding: 64px 0; }
  .sample-bar, .footer-meta { flex-direction: column; align-items: flex-start; }
  .price-card .btn, .hero-cta .btn { width: 100%; }
}
