:root {
  --bg: #faf6f0;
  --bg-deep: #f3ecdf;
  --paper: #ffffff;
  --paper-soft: #fdf8f0;
  --card: rgba(255, 255, 255, 0.97);
  --text: #2e2620;
  --muted: #8a7a68;
  --line: rgba(184, 142, 68, 0.25);
  --accent: #b88e44;
  --accent-deep: #8a6830;
  --accent-light: #e8c98a;
  --accent-soft: rgba(184, 142, 68, 0.12);
  --danger: #c45a4a;
  --success: #8a6830;
  --shadow: 0 24px 60px rgba(122, 90, 45, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(232, 201, 138, 0.30), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(232, 201, 138, 0.18), transparent 34%),
    linear-gradient(180deg, #fdf9f2 0%, #f6ecdc 50%, #f0e2ce 100%);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  min-height: 100vh;
  padding: 8px 0 24px;
}
.page,
.site-footer {
  width: min(100%, 430px);
  margin: 0 auto;
}
.page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  position: relative;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 0.852 / 1;
  background: #f0e2ce;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 142, 68, 0.25);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(60, 40, 20, 0.15) 0%, transparent 55%, rgba(60, 40, 20, 0.55) 100%),
    linear-gradient(90deg, rgba(60, 40, 20, 0.10), transparent 58%);
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(184, 142, 68, 0.45);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: #8a6830;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy h1 {
  width: fit-content;
  max-width: 300px;
  margin: 9px 0 0;
  padding: 12px 15px 13px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 142, 68, 0.30);
  color: #2e2620;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  box-shadow: 0 12px 28px rgba(122, 90, 45, 0.18);
}
.hero-body {
  margin: 0 14px;
  padding: 0 3px;
}
.promo-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 142, 68, 0.30);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
}
.promo-line span {
  color: #8a7a68;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-line strong {
  color: #8a6830;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0 0 15px;
  color: #4a3f33;
  font-size: 15px;
  line-height: 1.68;
}
.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin-bottom: 16px;
}
.price-old,
.price-current {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.price-old {
  color: #a89a88;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current {
  color: #8a6830;
  font-weight: 800;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #ffffff;
  background: #b88e44;
  font-size: 13px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:active { transform: translateY(1px); }
.button:disabled { opacity: .72; cursor: default; }
.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #c9a35a 0%, #8a6830 100%);
  box-shadow: 0 14px 30px rgba(138, 104, 48, 0.30);
  font-weight: 700;
}
.meta-note {
  margin: 10px 0 0;
  color: #8a7a68;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.section,
.order-section { padding: 0; }
.section-intro {
  margin: 0 14px 14px;
}
.section-intro h2 {
  margin: 12px 0 0;
  color: #8a6830;
  font-size: 29px;
  line-height: 1.07;
  letter-spacing: -0.045em;
}
.story-card,
.order-card {
  margin: 0 12px;
  overflow: hidden;
  border-radius: 29px;
  border: 1px solid rgba(184, 142, 68, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 240, 0.98));
  color: var(--text);
  box-shadow: 0 20px 50px rgba(122, 90, 45, 0.12);
}
.story-photo {
  aspect-ratio: 0.843 / 1;
  object-fit: cover;
}
.story-copy,
.order-card { padding: 21px; }
.story-copy > p,
.order-card > p {
  margin: 0;
  color: #4a3f33;
  font-size: 15px;
  line-height: 1.7;
}
.story-copy > p + p { margin-top: 13px; }
.facts-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.fact-item {
  padding: 15px;
  border-radius: 17px;
  border: 1px solid rgba(184, 142, 68, 0.20);
  background: rgba(255, 255, 255, 0.85);
}
.fact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #8a6830;
  font-size: 14px;
}
.fact-item p {
  margin: 0;
  color: #8a7a68;
  font-size: 14px;
  line-height: 1.55;
}
.mini-note {
  margin-top: 18px;
  padding: 17px;
  border-radius: 20px;
  border: 1px solid rgba(184, 142, 68, 0.30);
  background: linear-gradient(180deg, rgba(232, 201, 138, 0.22), rgba(255, 255, 255, 0.92));
}
.mini-note h3,
.order-card h2 {
  margin: 0 0 9px;
  color: #8a6830;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.mini-note p {
  margin: 0;
  color: #8a7a68;
  font-size: 14px;
  line-height: 1.62;
}
.notes-photo {
  margin-top: 18px;
  aspect-ratio: 0.877 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(184, 142, 68, 0.25);
}

.reviews-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.review-count {
  flex: none;
  padding-bottom: 4px;
  color: #8a7a68;
  font-size: 13px;
}
.reviews-carousel {
  position: relative;
  margin: 0 12px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 27px;
}
.carousel-track {
  display: flex;
  transition: transform .35s ease;
}
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 225px;
  padding: 23px 21px 21px;
  border-radius: 27px;
  border: 1px solid rgba(184, 142, 68, 0.25);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 240, 0.98));
  color: var(--text);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #b88e44;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(122, 90, 45, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.review-meta h3 {
  margin: 0 0 4px;
  color: #8a6830;
  font-size: 18px;
}
.review-meta span {
  color: #8a7a68;
  font-size: 13px;
}
.review-card p {
  margin: 0;
  color: #4a3f33;
  font-size: 15px;
  line-height: 1.7;
}
.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 142, 68, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(122, 90, 45, 0.12);
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-top: 2px solid #8a6830;
  border-right: 2px solid #8a6830;
}
.carousel-arrow-prev { left: 7px; }
.carousel-arrow-next { right: 7px; }
.carousel-arrow-prev::before { transform: rotate(-135deg); }
.carousel-arrow-next::before { transform: rotate(45deg); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px 0 2px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(184, 142, 68, 0.30);
}
.carousel-dots button.is-active { background: #8a6830; }

.order-card { padding: 21px; }
.order-card .section-kicker {
  color: #ffffff;
  background: #b88e44;
  border-color: transparent;
}
.order-card > p { margin-bottom: 18px; }
.field-group { margin-bottom: 15px; }
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #8a6830;
  font-size: 14px;
  font-weight: 600;
}
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(184, 142, 68, 0.30);
  border-radius: 17px;
  outline: none;
  color: #2e2620;
  background: rgba(255, 255, 255, 0.98);
}
.field-group input:focus {
  border-color: rgba(184, 142, 68, 0.65);
  box-shadow: 0 0 0 3px rgba(184, 142, 68, 0.15);
}
.field-group input::placeholder { color: #a89a88; }
.field-group.has-error input {
  border-color: var(--danger);
  background: rgba(255, 246, 244, 0.96);
}
.field-error,
.form-success {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}
.form-success { color: #8a6830; }
.form-success.is-error { color: var(--danger); }
.privacy-note {
  margin: 12px 0 0;
  color: #8a7a68;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  margin-top: 20px;
  padding: 0 18px 20px;
  color: #8a7a68;
  text-align: center;
}
.footer-title {
  margin-bottom: 12px;
  color: #8a6830;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.62;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
}
.footer-links a {
  color: #b88e44;
  font-size: 13px;
  text-decoration: none;
}
.registry-note { color: #a89a88; }

/* Legal pages */
.legal-body { min-height: 100vh; padding: 18px; color: #2e2620; background: #faf6f0; }
.legal-page { width: min(100%, 430px); margin: 0 auto; padding: 24px 22px 28px; border: 1px solid rgba(184,142,68,.25); border-radius: 28px; background: rgba(255,255,255,.98); box-shadow: 0 22px 55px rgba(122,90,45,.12); }
.back-link { display: inline-block; margin-bottom: 18px; color: #8a7a68; font-size: 14px; text-decoration: none; }
.legal-page h1 { margin: 0 0 16px; color: #8a6830; font-size: 30px; line-height: 1.08; letter-spacing: -.03em; }
.legal-page h2 { margin: 20px 0 10px; color: #8a6830; font-size: 20px; }
.legal-page p { margin: 0; color: #4a3f33; font-size: 15px; line-height: 1.7; }
.legal-page p + p, .legal-page h2 + p { margin-top: 10px; }

@media (min-width: 431px) {
  .page-shell { padding-top: 18px; }
}

/* === Top promo banner === */
.top-promo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #c41e3a 0%, #e63950 50%, #c41e3a 100%);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.35);
  padding: 10px 12px;
  text-align: center;
}
.top-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 430px;
  margin: 0 auto;
}
.top-promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.top-promo-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.top-promo-text strong { font-weight: 800; }

/* === Social proof === */
.social-proof-section { margin: 0 14px; }
.social-proof-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(184, 142, 68, 0.28);
  background: linear-gradient(145deg, rgba(232, 201, 138, 0.22), rgba(255, 255, 255, 0.95));
  box-shadow: 0 12px 32px rgba(122, 90, 45, 0.10);
}
.social-proof-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.social-proof-number { font-size: 28px; font-weight: 800; color: #8a6830; letter-spacing: -0.03em; line-height: 1.1; }
.social-proof-label { font-size: 12px; color: #8a7a68; font-weight: 600; }
.social-proof-stars { font-size: 18px; color: #b88e44; letter-spacing: 1px; line-height: 1; }
.social-proof-rating { font-size: 15px; font-weight: 700; color: #8a6830; }
.social-proof-divider { width: 1px; height: 42px; background: rgba(184, 142, 68, 0.30); }

/* === Review avatars === */
.review-avatar.av-1 { background: linear-gradient(135deg, #e8b4b8, #d4a5a5); }
.review-avatar.av-2 { background: linear-gradient(135deg, #c9a0dc, #b48bc9); }
.review-avatar.av-3 { background: linear-gradient(135deg, #a8d5e5, #8bc4d9); }
.review-avatar.av-4 { background: linear-gradient(135deg, #f0c987, #e0b56e); }
.review-avatar.av-5 { background: linear-gradient(135deg, #b8e0d2, #9bcfc0); }

.review-stars {
  margin: -6px 0 10px;
  color: #b88e44;
  font-size: 14px;
  letter-spacing: 1px;
}

/* === Purchase toast === */
.purchase-toast {
  position: fixed;
  left: 12px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(320px, calc(100vw - 24px));
  padding: 12px 16px 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(184, 142, 68, 0.35);
  box-shadow: 0 12px 40px rgba(122, 90, 45, 0.20), 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  pointer-events: none;
}
.purchase-toast.is-visible { transform: translateY(0); opacity: 1; }
.toast-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  background: #b88e44;
}
.toast-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.toast-content strong { color: #8a6830; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-content span { color: #8a7a68; font-size: 13px; line-height: 1.3; }

/* === Benefits === */
.benefits-section { margin: 0 14px; }
.benefits-card {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(184, 142, 68, 0.28);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(122, 90, 45, 0.10);
}
.benefits-title { margin: 0 0 16px; color: #8a6830; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; text-align: center; }
.benefits-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; }
.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 142, 68, 0.20);
  color: #8a6830;
  font-size: 14px;
  font-weight: 800;
}
.benefits-list strong { display: block; color: #2e2620; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.benefits-list p { margin: 0; color: #8a7a68; font-size: 13px; line-height: 1.45; }

/* === FOMO === */
.fomo-section { margin: 0 14px; }
.fomo-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(196, 30, 58, 0.30);
  text-align: center;
}
.fomo-text { margin: 0; color: #8a4a52; font-size: 14px; line-height: 1.5; }
.fomo-text strong { color: #8a6830; font-weight: 700; }

/* === Real photo avatars === */
.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(184, 142, 68, 0.45);
  box-shadow: 0 4px 12px rgba(122, 90, 45, 0.18);
  background: #f0e2ce;
}