:root {
  --bg: #f4efe8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #45392f;
  --muted: #76685b;
  --line: rgba(120, 98, 77, 0.14);
  --accent: #a6865d;
  --accent-dark: #886847;
  --shadow: 0 24px 60px rgba(91, 68, 46, 0.12);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(245, 223, 228, 0.55), transparent 28%),
    linear-gradient(180deg, #f8f3ee 0%, #f0ebe3 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-wrap { min-height: 100vh; }
.page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 14px 14px 28px;
}
.hero,
.story-card,
.order-card,
.review-card,
.footer-inner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero,
.story-card,
.order-card,
.footer-inner {
  background: var(--surface-strong);
  backdrop-filter: blur(16px);
  border-radius: 30px;
  overflow: hidden;
}
.hero-media {
  position: relative;
  min-height: 360px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54, 37, 30, 0.08) 0%, rgba(54, 37, 30, 0.54) 100%);
}
.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fffaf4;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-copy .eyebrow { color: rgba(255,250,244,.88); }
.hero-copy h1 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.02;
}
.hero-body { padding: 18px 18px 22px; }
.lead, .order-card p, .story-body p, .review-card p, .footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}
.price-old {
  font-size: 29px;
  line-height: 1;
  color: rgba(118, 104, 91, 0.7);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-current {
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}
.promo-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.promo-badge,
.promo-timer {
  border-radius: 18px;
  border: 1px solid rgba(166, 134, 93, 0.22);
  background: rgba(244, 236, 225, 0.9);
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-height: 56px;
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}
.promo-timer {
  flex: 1;
  padding: 9px 12px;
}
.promo-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.timer-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-dark);
}
.timer-box i { font-style: normal; opacity: .55; }
.button {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 18px;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(180deg, #b79367 0%, #8f6b46 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(143, 107, 70, 0.22);
}
.button-submit:disabled { opacity: .7; cursor: wait; }
.sold-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.section { margin-top: 18px; }
.story-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.story-body { padding: 18px; }
.story-body h2,
.section-head h2,
.order-card h2 {
  margin: 10px 0 14px;
  font-size: 28px;
  line-height: 1.08;
}
.note-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.note-item,
.story-side-copy,
.product-panel,
.review-card,
.field-group input {
  background: var(--surface);
}
.note-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
}
.note-item strong, .story-side-copy h3, .product-panel h3, .review-card h3, .footer-title {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}
.story-split {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.story-split img,
.product-panel img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}
.story-split img { aspect-ratio: 4 / 5; }
.story-side-copy {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
}
.product-panel {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  display: grid;
  gap: 14px;
}
.product-panel img { aspect-ratio: 4 / 4.3; }
.section-head { padding: 0 4px 14px; }
.reviews-carousel {
  position: relative;
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .36s ease;
}
.review-card {
  min-width: 100%;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
}
.review-city {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--accent-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.carousel-arrow {
  position: absolute;
  top: calc(50% - 22px);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  z-index: 2;
  cursor: pointer;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent-dark);
  border-right: 2px solid var(--accent-dark);
  margin: 12px auto;
}
.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }
.carousel-arrow.prev::before { transform: rotate(-135deg); }
.carousel-arrow.next::before { transform: rotate(45deg); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(118,104,91,.24);
  padding: 0;
}
.carousel-dots button.is-active { background: var(--accent-dark); }
.order-card { padding: 22px 18px; }
.order-form { margin-top: 16px; }
.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  font-size: 14px;
  margin: 0 0 8px;
}
.field-group input {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(120,98,77,.16);
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}
.field-group input:focus {
  border-color: rgba(166, 134, 93, .55);
  box-shadow: 0 0 0 4px rgba(166, 134, 93, .12);
}
.field-group.has-error input {
  border-color: #c26161;
  box-shadow: 0 0 0 4px rgba(194, 97, 97, .10);
}
.field-error {
  min-height: 18px;
  padding-top: 6px;
  font-size: 12px;
  color: #b15353;
}
.form-note, .form-message {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 12px;
}
.form-message.is-error { color: #b15353; }
.footer {
  padding: 0 14px 28px;
}
.footer-inner {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 20px 18px 24px;
}
.footer-title {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.footer-links a {
  text-decoration: none;
  color: var(--accent-dark);
}
.footer-note { margin-top: 8px; }
@media (min-width: 431px) {
  body { padding: 14px 0; }
  .page, .footer { padding-left: 0; padding-right: 0; }
}
