:root {
  --bg-top: #130707;
  --bg-bottom: #2a0909;
  --surface: rgba(31, 10, 10, 0.84);
  --surface-soft: rgba(54, 17, 17, 0.72);
  --surface-light: rgba(255, 245, 238, 0.08);
  --card: rgba(31, 8, 8, 0.88);
  --card-soft: rgba(54, 15, 15, 0.92);
  --text: #f6e8de;
  --muted: #d5b9ad;
  --line: rgba(255, 220, 198, 0.12);
  --accent: #d7a36b;
  --accent-soft: rgba(215, 163, 107, 0.14);
  --accent-strong: #f0c48f;
  --danger: #ff9c8f;
  --success: #b7d2c2;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(176, 26, 26, 0.32), transparent 30%),
    radial-gradient(circle at bottom, rgba(120, 12, 12, 0.24), transparent 34%),
    linear-gradient(180deg, var(--bg-top) 0%, #190707 24%, #2a0909 100%);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a { color: inherit; }
button, input { font: inherit; }

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

.hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card {
  position: relative;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 34px;
  background: #2a0909;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card img {
  aspect-ratio: 0.665 / 1;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.08) 34%, rgba(0,0,0,0.56) 100%);
}
.hero-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero-kicker,
.section-kicker,
.review-visual-overlay span,
.review-city {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(28, 8, 8, 0.56);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f3d8c0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-title-box {
  width: 100%;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 6, 6, 0.38), rgba(26, 6, 6, 0.80));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.hero-title-box h1 {
  margin: 0;
  font-size: 34px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.hero-title-box p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 232, 222, 0.86);
}
.hero-body {
  margin: 0 14px;
  padding: 0 6px;
}
.lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.68;
  color: rgba(239, 216, 205, 0.88);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.price-old,
.price-current {
  font-size: 29px;
  letter-spacing: -0.04em;
}
.price-old {
  color: rgba(240, 201, 181, 0.45);
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current {
  color: #fff4ea;
  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(255, 223, 191, 0.09);
  background: linear-gradient(180deg, rgba(58,16,16,0.92), rgba(30,10,10,0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-strong);
}
.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: rgba(230, 196, 171, 0.68);
}
.timer-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff3e7;
}
.timer-box span { min-width: 32px; }
.timer-box i {
  font-style: normal;
  color: rgba(240, 196, 143, 0.56);
}
.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 .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:active { transform: translateY(1px); }
.button:disabled {
  opacity: .75;
  cursor: default;
}
.button-primary {
  background: linear-gradient(180deg, #f0c48f 0%, #d09a5f 100%);
  color: #3b140d;
  box-shadow: 0 16px 28px rgba(208, 154, 95, 0.20);
  font-weight: 800;
}
.meta-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(214, 185, 173, 0.76);
  text-align: center;
}

.section,
.order-section {
  padding: 0;
}
.section-intro {
  margin: 0 14px 14px;
}
.section-intro h2 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.story-card,
.order-card,
.review-card,
.legal-page {
  margin: 0 14px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(44, 13, 13, 0.92), rgba(23, 8, 8, 0.98));
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}
.story-photo,
.review-visual img {
  aspect-ratio: 0.665 / 1;
  object-fit: cover;
}
.story-copy,
.order-card {
  padding: 22px;
}
.story-copy p,
.order-card > p,
.legal-page p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(240, 221, 212, 0.84);
}
.story-copy p + p { margin-top: 14px; }
.scent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.scent-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f3d4b4;
  font-size: 13px;
  font-weight: 700;
}
.scent-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.scent-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}
.scent-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff0df;
}
.scent-item p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(236, 213, 201, 0.78);
}
.aroma-board {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.aroma-board img {
  aspect-ratio: 0.665 / 1;
  object-fit: cover;
}
.aroma-caption {
  padding: 18px;
  background: linear-gradient(180deg, rgba(26,6,6,0.02), rgba(26,6,6,0.62));
}
.aroma-caption h3,
.order-card h2,
.legal-page h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.aroma-caption p {
  color: rgba(238, 218, 208, 0.82);
}

.review-visual {
  position: relative;
  margin: 0 14px 14px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}
.review-visual img {
  aspect-ratio: 1.25 / 1;
}
.review-visual-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: flex-start;
}
.reviews-carousel {
  position: relative;
  margin: 0 14px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
}
.carousel-track {
  display: flex;
  transition: transform .35s ease;
}
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 216px;
  padding: 24px 22px 22px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.review-card h3 {
  margin: 0;
  font-size: 19px;
}
.review-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(240, 221, 212, 0.84);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(23, 8, 8, 0.86);
  cursor: pointer;
  z-index: 2;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid var(--accent-strong);
  border-right: 2px solid var(--accent-strong);
}
.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;
  padding: 16px 0 4px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 214, 184, 0.22);
}
.carousel-dots button.is-active {
  background: var(--accent-strong);
}

.order-card {
  padding: 22px;
}
.field-group {
  margin-bottom: 16px;
}
.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.field-group input {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 0 16px;
  color: var(--text);
}
.field-group input::placeholder {
  color: rgba(233, 204, 188, 0.42);
}
.field-group.has-error input {
  border-color: var(--danger);
  background: rgba(255,156,143,0.06);
}
.field-error,
.form-success {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--danger);
}
.form-success { color: var(--success); }
.form-success.is-error { color: var(--danger); }
.privacy-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(214, 185, 173, 0.76);
  text-align: center;
}
.privacy-note a {
  color: #f1c995;
  text-decoration: none;
}

.site-footer {
  margin-top: 14px;
  padding: 0 16px 20px;
  text-align: center;
  color: rgba(222, 200, 189, 0.82);
}
.footer-title {
  margin-bottom: 12px;
  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 {
  font-size: 13px;
  text-decoration: none;
}
.registry-note {
  color: rgba(214, 185, 173, 0.70);
}

.legal-body {
  min-height: 100vh;
  padding: 18px;
}
.legal-page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 24px 22px 28px;
}
.back-link {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
  color: rgba(214, 185, 173, 0.82);
  font-size: 14px;
}
.legal-page h2 {
  margin: 20px 0 10px;
  font-size: 20px;
  color: #fff0df;
}

@media (min-width: 700px) {
  .page-shell {
    padding: 28px 0 32px;
  }
}
