:root {
  --page-bg: #eee7df;
  --paper: #fffaf4;
  --paper-soft: #f7efe7;
  --ink: #302523;
  --muted: #776765;
  --line: rgba(91, 47, 44, 0.13);
  --red: #8f1720;
  --red-dark: #681017;
  --red-soft: #f2dedc;
  --gold: #caa56c;
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(83, 39, 35, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page-bg); }
body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.82), transparent 34%),
    linear-gradient(180deg, #f4ede6 0%, #e7ddd5 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  width: min(100%, 500px);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(71, 35, 31, .13);
  overflow: hidden;
}

.page { overflow: hidden; }
.hero { background: var(--paper); }
.hero-media {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
  background: #4d181b;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,10,12,.04) 28%, rgba(28,10,12,.08) 54%, rgba(28,10,12,.83) 100%);
}
.hero-title-wrap {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  color: var(--white);
  text-align: center;
  text-shadow: 0 3px 20px rgba(38, 8, 10, .34);
}
.hero-title-wrap h1,
.section-heading h2,
.order-card h2 {
  font-family: "Playfair Display", Georgia, serif;
}
.hero-title-wrap h1 {
  margin: 7px 0 0;
  font-size: clamp(34px, 10vw, 50px);
  line-height: .98;
  letter-spacing: -.035em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .58;
}
.eyebrow-light { color: rgba(255,255,255,.86); }

.hero-content { padding: 24px 20px 30px; }
.offer-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.offer-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px var(--red-soft);
}
.lead {
  margin: 0;
  color: #5f5150;
  font-size: 15px;
  line-height: 1.72;
}
.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 22px 0 18px;
}
.price-old,
.price-current,
.discount {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.025em;
}
.price-old {
  color: #a79591;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current { color: var(--ink); }
.discount {
  color: var(--red);
  font-size: 16px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 20px;
  border: 0;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .68; cursor: wait; }
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #9c1e28 0%, var(--red-dark) 100%);
  box-shadow: 0 13px 30px rgba(116, 17, 24, .22);
}
.sold-note {
  margin: 10px 0 0;
  color: #94837f;
  font-size: 12px;
  text-align: center;
}

.section { padding: 36px 16px; }
.product-section {
  background: linear-gradient(180deg, var(--paper-soft) 0%, #f2e7de 100%);
}
.section-heading {
  padding: 0 6px 17px;
  text-align: center;
}
.section-heading h2 {
  margin: 8px auto 0;
  max-width: 390px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.028em;
}
.story-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  background: rgba(255, 251, 246, .96);
  box-shadow: var(--shadow);
}
.story-image {
  aspect-ratio: .83;
  object-fit: cover;
}
.story-content { padding: 23px 19px 20px; }
.story-content > p {
  margin: 0;
  color: #655553;
  font-size: 14px;
  line-height: 1.72;
}
.story-content > p + p { margin-top: 12px; }
.notes-grid {
  display: grid;
  gap: 1px;
  margin: 21px -19px 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.note-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 19px;
  background: #fffaf5;
}
.note-item span {
  color: #a18984;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.note-item strong {
  font-size: 14px;
  font-weight: 800;
}
.detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.detail-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #705b58;
  background: rgba(244, 230, 221, .58);
  font-size: 11px;
  font-weight: 700;
}

.reviews-section {
  background: linear-gradient(180deg, #fffaf4 0%, #f8eee7 100%);
}
.reviews-carousel { position: relative; }
.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}
.carousel-track {
  display: flex;
  transition: transform .46s cubic-bezier(.22,.7,.24,1);
  touch-action: pan-y;
}
.review-card {
  flex: 0 0 100%;
  min-height: 220px;
  padding: 23px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 18px 45px rgba(82, 44, 40, .08);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #aa3038, #73161c);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
}
.review-top h3 {
  margin: 0 0 2px;
  font-size: 14px;
}
.review-top p {
  margin: 0;
  color: #998580;
  font-size: 11px;
}
.review-card > p {
  margin: 0;
  color: #5f4e4c;
  font-size: 14px;
  line-height: 1.72;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red-dark);
  background: rgba(255,255,255,.7);
  cursor: pointer;
}
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfbcb8;
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.carousel-dot.is-active {
  width: 20px;
  background: var(--red);
}

.order-section {
  padding: 36px 16px;
  background: #f1e4dc;
}
.order-card {
  padding: 27px 20px 22px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(219,171,118,.34), transparent 32%),
    linear-gradient(160deg, #8d1b24 0%, #5e1016 100%);
  box-shadow: 0 26px 60px rgba(86, 13, 20, .24);
}
.order-card h2 {
  margin: 9px 0 10px;
  font-size: 31px;
  line-height: 1.06;
  letter-spacing: -.03em;
}
.order-copy {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.62;
}
.order-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 19px 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  font-size: 12px;
}
.order-offer strong { font-size: 17px; }
.order-form { display: grid; gap: 13px; }
.field-group { position: relative; }
.field-group label {
  display: block;
  margin: 0 0 7px 3px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
}
.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  outline: none;
  color: #2f2221;
  background: #fffaf6;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field-group input:focus {
  border-color: rgba(255,255,255,.74);
  box-shadow: 0 0 0 3px rgba(255,255,255,.13);
}
.field-group.has-error input {
  border-color: #ffc2bd;
  box-shadow: 0 0 0 3px rgba(255,194,189,.14);
}
.field-hint {
  margin: 6px 3px 0;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}
.field-error {
  min-height: 0;
  margin: 6px 3px 0;
  color: #ffd0cc;
  font-size: 11px;
  line-height: 1.35;
}
.field-error:empty { display: none; }
.button-light {
  margin-top: 3px;
  color: var(--red-dark);
  background: #fff8f0;
  box-shadow: 0 12px 28px rgba(44, 4, 8, .18);
}
.privacy-note {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}
.form-message {
  display: none;
  margin: 0;
  color: #ffd0cc;
  font-size: 11px;
  text-align: center;
}
.form-message:not(:empty) { display: block; }

.site-footer {
  padding: 28px 20px 30px;
  color: #786864;
  background: #e8ddd5;
  text-align: center;
  font-size: 11px;
  line-height: 1.7;
}
.footer-title {
  margin-bottom: 10px;
  color: #493936;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.site-footer p { margin: 0 0 11px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 13px;
  margin: 14px 0;
}
.footer-links a {
  color: #5d4542;
  text-decoration: underline;
  text-decoration-color: rgba(93,69,66,.25);
  text-underline-offset: 3px;
}
.registry-note { color: #94847f; }

@media (max-width: 350px) {
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .section, .order-section { padding-left: 11px; padding-right: 11px; }
  .section-heading h2, .order-card h2 { font-size: 27px; }
  .price-old, .price-current { font-size: 19px; }
}

@media (min-width: 501px) {
  body { padding: 22px 0; }
  .page-shell { border-radius: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
