:root {
  --bg: #071c17;
  --bg-deep: #03120f;
  --paper: #f2f0e7;
  --paper-soft: #e8eadf;
  --card: rgba(247, 247, 238, 0.96);
  --text: #17211d;
  --muted: #5f6b65;
  --line: rgba(224, 233, 219, 0.14);
  --accent: #2f765b;
  --accent-deep: #164b3a;
  --accent-light: #d4dfaa;
  --accent-soft: rgba(63, 128, 98, 0.12);
  --danger: #a7453c;
  --success: #2f6a4d;
  --shadow: 0 24px 60px rgba(0, 12, 9, 0.24);
}

* { 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(--paper);
  background:
    radial-gradient(circle at 50% -10%, rgba(54, 139, 101, 0.38), transparent 28%),
    linear-gradient(180deg, #092a21 0%, #061b16 38%, #071712 72%, #030d0b 100%);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  min-height: 100vh;
  padding: 12px 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: #0b2d23;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 239, 219, 0.09);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 13, 10, 0.08) 0%, transparent 55%, rgba(1, 12, 9, 0.76) 100%),
    linear-gradient(90deg, rgba(1, 14, 10, 0.16), 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(243, 245, 224, 0.18);
  background: rgba(4, 31, 23, 0.62);
  backdrop-filter: blur(10px);
  color: #e9edcd;
  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(2, 18, 13, 0.76);
  border: 1px solid rgba(244, 246, 225, 0.12);
  color: #f5f3df;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.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(229, 236, 207, 0.14);
  border-radius: 18px;
  background: rgba(225, 232, 205, 0.07);
}
.promo-line span {
  color: #aebbb3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-line strong {
  color: #eff2d8;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0 0 15px;
  color: #cad3cd;
  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: #72817a;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current {
  color: #f6f3dd;
  font-weight: 800;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #13251d;
  background: #dce4ac;
  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: #f8f6e4;
  background: linear-gradient(180deg, #367f62 0%, #205b46 100%);
  box-shadow: 0 14px 30px rgba(17, 76, 56, .36);
  font-weight: 700;
}
.meta-note {
  margin: 10px 0 0;
  color: #81918a;
  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: #f0f2dd;
  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(234, 238, 218, 0.10);
  background: linear-gradient(180deg, rgba(247, 247, 238, 0.98), rgba(229, 233, 222, 0.98));
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 10, 8, .24);
}
.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: #4d5b54;
  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(22, 75, 58, 0.08);
  background: rgba(255,255,255,.55);
}
.fact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #1d352c;
  font-size: 14px;
}
.fact-item p {
  margin: 0;
  color: #59675f;
  font-size: 14px;
  line-height: 1.55;
}
.mini-note {
  margin-top: 18px;
  padding: 17px;
  border-radius: 20px;
  border: 1px solid rgba(25, 76, 59, 0.09);
  background: linear-gradient(180deg, rgba(218, 227, 189, .46), rgba(255,255,255,.55));
}
.mini-note h3,
.order-card h2 {
  margin: 0 0 9px;
  color: #1b3028;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.mini-note p {
  margin: 0;
  color: #536159;
  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(23, 69, 54, .12);
}

.reviews-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.review-count {
  flex: none;
  padding-bottom: 4px;
  color: #94a39c;
  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(235, 239, 220, .10);
  background: linear-gradient(155deg, rgba(242, 242, 229, .98), rgba(214, 224, 204, .98));
  color: var(--text);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e9efd3;
  background: #245b46;
  font-weight: 800;
}
.review-meta h3 {
  margin: 0 0 4px;
  color: #20332b;
  font-size: 18px;
}
.review-meta span {
  color: #6f7c75;
  font-size: 13px;
}
.review-card p {
  margin: 0;
  color: #48564f;
  font-size: 15px;
  line-height: 1.7;
}
.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 70, 51, .15);
  border-radius: 50%;
  background: rgba(248, 248, 237, .94);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-top: 2px solid #1d5943;
  border-right: 2px solid #1d5943;
}
.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(221, 231, 216, .24);
}
.carousel-dots button.is-active { background: #d6dfa9; }

.order-card { padding: 21px; }
.order-card .section-kicker {
  color: #dce5c5;
  background: #1c5942;
  border-color: transparent;
}
.order-card > p { margin-bottom: 18px; }
.field-group { margin-bottom: 15px; }
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #283b33;
  font-size: 14px;
  font-weight: 600;
}
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(22, 75, 58, .14);
  border-radius: 17px;
  outline: none;
  color: var(--text);
  background: rgba(255,255,255,.92);
}
.field-group input:focus {
  border-color: rgba(37, 105, 80, .55);
  box-shadow: 0 0 0 3px rgba(42, 113, 86, .10);
}
.field-group input::placeholder { color: #919c96; }
.field-group.has-error input {
  border-color: var(--danger);
  background: #fff7f5;
}
.field-error,
.form-success {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}
.form-success { color: var(--success); }
.form-success.is-error { color: var(--danger); }
.privacy-note {
  margin: 12px 0 0;
  color: #69766f;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  margin-top: 20px;
  padding: 0 18px 20px;
  color: #899991;
  text-align: center;
}
.footer-title {
  margin-bottom: 12px;
  color: #c6d0c9;
  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: #d2d9d4;
  font-size: 13px;
  text-decoration: none;
}
.registry-note { color: #74857d; }

/* Shared legal-page styles used by the copied documents. */
.legal-body { min-height: 100vh; padding: 18px; color: #17211d; background: #e9ede5; }
.legal-page { width: min(100%, 430px); margin: 0 auto; padding: 24px 22px 28px; border: 1px solid rgba(22,75,58,.10); border-radius: 28px; background: rgba(255,255,255,.97); box-shadow: 0 22px 55px rgba(18,45,35,.10); }
.back-link { display: inline-block; margin-bottom: 18px; color: #64716b; font-size: 14px; text-decoration: none; }
.legal-page h1 { margin: 0 0 16px; font-size: 30px; line-height: 1.08; letter-spacing: -.03em; }
.legal-page h2 { margin: 20px 0 10px; font-size: 20px; }
.legal-page p { margin: 0; color: #4e5b55; 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; }
}
