:root {
  --bg: #1f1611;
  --bg-second: #3b2618;
  --surface: rgba(52, 33, 23, 0.86);
  --surface-strong: rgba(66, 42, 30, 0.95);
  --line: rgba(215, 176, 123, 0.12);
  --text: #f3e5d2;
  --muted: #ccb79c;
  --accent: #d5a55d;
  --accent-deep: #f0cb8f;
  --accent-soft: rgba(213, 165, 93, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  --danger: #f3967c;
}

* { 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 top left, rgba(255, 220, 170, 0.10), transparent 28%),
    linear-gradient(180deg, #19110d 0%, #2c1d13 38%, #4a2e1e 100%);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell { min-height: 100vh; padding: 14px 0 28px; }
.page, .site-footer {
  width: min(100%, 430px);
  margin: 0 auto;
}
.page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card,
.story-card,
.offer-card,
.order-card {
  margin: 0 14px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(53,34,24,0.98), rgba(38,24,17,0.96));
  box-shadow: var(--shadow);
}
.hero-card { position: relative; }
.hero-card img,
.story-photo,
.offer-photo {
  aspect-ratio: 0.665 / 1;
  object-fit: cover;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25,17,13,0.05) 0%, rgba(25,17,13,0.28) 52%, rgba(25,17,13,0.70) 100%);
}
.hero-overlay { display: none; }
.hero-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 203, 143, 0.16);
  background: rgba(51, 33, 23, 0.72);
  backdrop-filter: blur(8px);
  color: #f0cb8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0;
  max-width: 290px;
  font-size: 36px;
  line-height: 0.97;
  letter-spacing: -0.05em;
  color: #fff3df;
}
.hero-body {
  margin: 0 14px;
  padding: 0 6px;
}
.lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.68;
  color: #e3ceb0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.price-old,
.price-current {
  font-size: 28px;
  letter-spacing: -0.05em;
}
.price-old {
  color: rgba(238, 213, 184, 0.42);
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current {
  color: #fff0d5;
  font-weight: 800;
}
.promo-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 16px;
}
.promo-badge,
.promo-timer {
  min-height: 60px;
  border-radius: 20px;
  border: 1px solid rgba(240, 203, 143, 0.12);
  background: linear-gradient(180deg, rgba(65,41,29,0.94), rgba(42,27,19,0.98));
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  white-space: nowrap;
  color: #f0cb8f;
  font-size: 15px;
  font-weight: 700;
}
.promo-timer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
}
.promo-timer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d5bea4;
}
.timer-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff1d7;
}
.timer-box span { min-width: 32px; }
.timer-box i { font-style: normal; color: rgba(240, 203, 143, 0.52); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}
.button:active { transform: translateY(1px); }
.button:disabled { opacity: .75; cursor: default; }
.button-primary {
  color: #2c1b10;
  background: linear-gradient(180deg, #f0cb8f 0%, #cc984f 100%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}
.button-secondary {
  color: #fff0d5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240, 203, 143, 0.14);
}
.meta-note {
  margin: 10px 0 0;
  color: #cfb598;
  font-size: 13px;
  text-align: center;
}

.section-intro { margin: 0 14px 14px; }
.section-intro h2 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.story-copy,
.offer-copy,
.order-card {
  padding: 22px;
}
.story-copy p,
.offer-copy p,
.order-card > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #dcc5a7;
}
.story-copy p + p,
.offer-copy p + p { margin-top: 14px; }

.scent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.scent-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffdca7;
  font-size: 13px;
  font-weight: 700;
}
.scent-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.scent-item,
.note-panel,
.review-card,
.field-group {
  border: 1px solid rgba(240, 203, 143, 0.10);
  background: rgba(255,255,255,0.04);
}
.scent-item {
  border-radius: 18px;
  padding: 14px 16px;
}
.scent-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff1db;
}
.scent-item p {
  font-size: 14px;
  line-height: 1.58;
  color: #d9c0a0;
}
.story-duo {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.story-side-photo {
  border-radius: 22px;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border: 1px solid rgba(240, 203, 143, 0.08);
}
.note-panel {
  border-radius: 22px;
  padding: 18px;
}
.note-panel h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.note-panel p { margin: 0; font-size: 14px; line-height: 1.65; color: #dbc5a8; }

.offer-card { display: grid; }
.offer-copy { display: flex; flex-direction: column; gap: 12px; }
.offer-copy h2,
.order-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #fff1dc;
}

.reviews-carousel {
  position: relative;
  margin: 0 14px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
}
.carousel-track {
  display: flex;
  transition: transform .4s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  border-radius: 28px;
  padding: 22px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.review-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d3b383;
}
.review-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff2dc;
}
.review-card p {
  margin: 0;
  color: #dcc6a8;
  font-size: 15px;
  line-height: 1.7;
}
.carousel-arrow {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 203, 143, 0.16);
  border-radius: 50%;
  background: rgba(51,33,23,0.88);
  color: #f0cb8f;
  cursor: pointer;
  z-index: 3;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.carousel-arrow-prev { left: 10px; }
.carousel-arrow-next { right: 10px; }
.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: 12px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 203, 143, 0.20);
  cursor: pointer;
}
.carousel-dots button.is-active {
  width: 24px;
  background: #f0cb8f;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.field-group {
  border-radius: 20px;
  padding: 14px;
}
.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #d7bc99;
}
.field-group input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff2dd;
  font-size: 17px;
}
.field-group input::placeholder { color: rgba(255, 242, 221, 0.34); }
.field-error,
.form-success,
.privacy-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.field-error { min-height: 20px; color: var(--danger); }
.privacy-note { color: #cdb497; text-align: center; }
.form-success { min-height: 20px; color: #cbe2b5; text-align: center; }
.form-success.is-error { color: var(--danger); }
.field-group.has-error { border-color: rgba(243, 150, 124, 0.45); }

.site-footer {
  margin-top: 18px;
  padding: 0 20px 10px;
  text-align: center;
  color: #d3bba0;
}
.footer-title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 187, 160, 0.22);
}
.registry-note { color: #ccb191; }

@media (min-width: 390px) {
  .story-duo {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
