:root {
  --bg: #06120e;
  --bg-deep: #020806;
  --paper: #f2efe4;
  --paper-soft: #e4ded0;
  --card: rgba(6, 18, 14, 0.97);
  --text: #f2efe4;
  --muted: #8a9c92;
  --line: rgba(212, 175, 55, 0.30);
  --accent: #d4af37;
  --accent-deep: #a8862b;
  --accent-light: #f0d78c;
  --accent-soft: rgba(212, 175, 55, 0.18);
  --danger: #c45a4a;
  --success: #c9a227;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

* { 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(212, 175, 55, 0.18), transparent 28%),
    linear-gradient(180deg, #0a1a14 0%, #06120e 38%, #030c09 72%, #020806 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: #0a1a14;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.30);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 6, 0.2) 0%, transparent 55%, rgba(2, 8, 6, 0.92) 100%),
    linear-gradient(90deg, rgba(2, 8, 6, 0.2), 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(212, 175, 55, 0.45);
  background: rgba(3, 12, 9, 0.88);
  backdrop-filter: blur(10px);
  color: #f0d78c;
  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, 8, 6, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f2efe4;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.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(212, 175, 55, 0.35);
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.10);
}
.promo-line span {
  color: #8a9c92;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-line strong {
  color: #f0d78c;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0 0 15px;
  color: #c4d2ca;
  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: #6f7d74;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current {
  color: #f0d78c;
  font-weight: 800;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #06120e;
  background: #d4af37;
  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: #06120e;
  background: linear-gradient(180deg, #f0d78c 0%, #d4af37 100%);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}
.meta-note {
  margin: 10px 0 0;
  color: #6f7d74;
  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: #f0d78c;
  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(212, 175, 55, 0.30);
  background: linear-gradient(180deg, rgba(6, 18, 14, 0.98), rgba(3, 12, 9, 0.98));
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}
.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: #c4d2ca;
  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(212, 175, 55, 0.22);
  background: rgba(2, 8, 6, 0.85);
}
.fact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #f0d78c;
  font-size: 14px;
}
.fact-item p {
  margin: 0;
  color: #8a9c92;
  font-size: 14px;
  line-height: 1.55;
}
.mini-note {
  margin-top: 18px;
  padding: 17px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(2, 8, 6, 0.92));
}
.mini-note h3,
.order-card h2 {
  margin: 0 0 9px;
  color: #f0d78c;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.mini-note p {
  margin: 0;
  color: #8a9c92;
  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(212, 175, 55, 0.30);
}

.reviews-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.review-count {
  flex: none;
  padding-bottom: 4px;
  color: #6f7d74;
  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(212, 175, 55, 0.30);
  background: linear-gradient(155deg, rgba(6, 18, 14, 0.98), rgba(2, 8, 6, 0.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: #06120e;
  background: #d4af37;
  font-weight: 800;
}
.review-meta h3 {
  margin: 0 0 4px;
  color: #f0d78c;
  font-size: 18px;
}
.review-meta span {
  color: #8a9c92;
  font-size: 13px;
}
.review-card p {
  margin: 0;
  color: #c4d2ca;
  font-size: 15px;
  line-height: 1.7;
}
.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: rgba(2, 8, 6, 0.92);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-top: 2px solid #f0d78c;
  border-right: 2px solid #f0d78c;
}
.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(212, 175, 55, 0.35);
}
.carousel-dots button.is-active { background: #f0d78c; }

.order-card { padding: 21px; }
.order-card .section-kicker {
  color: #06120e;
  background: #d4af37;
  border-color: transparent;
}
.order-card > p { margin-bottom: 18px; }
.field-group { margin-bottom: 15px; }
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #f0d78c;
  font-size: 14px;
  font-weight: 600;
}
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 17px;
  outline: none;
  color: #f2efe4;
  background: rgba(2, 8, 6, 0.92);
}
.field-group input:focus {
  border-color: rgba(240, 215, 140, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.field-group input::placeholder { color: #6f7d74; }
.field-group.has-error input {
  border-color: var(--danger);
  background: rgba(30, 10, 10, 0.9);
}
.field-error,
.form-success {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}
.form-success { color: #c9a227; }
.form-success.is-error { color: var(--danger); }
.privacy-note {
  margin: 12px 0 0;
  color: #8a9c92;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  margin-top: 20px;
  padding: 0 18px 20px;
  color: #8a9c92;
  text-align: center;
}
.footer-title {
  margin-bottom: 12px;
  color: #f0d78c;
  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: #d4af37;
  font-size: 13px;
  text-decoration: none;
}
.registry-note { color: #6f7d74; }

/* Shared legal-page styles used by the copied documents. */
.legal-body { min-height: 100vh; padding: 18px; color: #f2efe4; background: #06120e; }
.legal-page { width: min(100%, 430px); margin: 0 auto; padding: 24px 22px 28px; border: 1px solid rgba(212,175,55,.30); border-radius: 28px; background: rgba(6,18,14,.98); box-shadow: 0 22px 55px rgba(0,0,0,.65); }
.back-link { display: inline-block; margin-bottom: 18px; color: #8a9c92; font-size: 14px; text-decoration: none; }
.legal-page h1 { margin: 0 0 16px; color: #f0d78c; font-size: 30px; line-height: 1.08; letter-spacing: -.03em; }
.legal-page h2 { margin: 20px 0 10px; color: #f0d78c; font-size: 20px; }
.legal-page p { margin: 0; color: #c4d2ca; 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; }
}