:root {
  --page-bg: #e9e3dc;
  --surface: #f8f5f0;
  --surface-soft: #efe8de;
  --paper: #fffdfa;
  --text: #292824;
  --muted: #6e6a63;
  --line: rgba(47, 43, 38, 0.11);
  --graphite: #292a2a;
  --graphite-soft: #3b3b3a;
  --wine: #842d2c;
  --wine-deep: #671f20;
  --wine-soft: rgba(132, 45, 44, 0.10);
  --sand: #c7a67b;
  --danger: #b4423f;
  --shadow: 0 24px 65px rgba(42, 35, 28, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page-bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.85), transparent 35%),
    linear-gradient(180deg, #f1ede8 0%, var(--page-bg) 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.site-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(34, 30, 26, .05), 0 24px 90px rgba(35, 29, 24, .12);
}

.hero { padding-bottom: 34px; }
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 635px;
  background: #f7f7f6;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 635px;
  object-fit: cover;
  object-position: center 47%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, .55) 0%, rgba(12, 12, 12, .08) 25%, transparent 52%),
    linear-gradient(0deg, rgba(17, 17, 17, .18) 0%, transparent 24%);
  pointer-events: none;
}
.hero-heading {
  position: absolute;
  top: 18px;
  left: 16px;
  right: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 24px;
  color: #fff;
  background: rgba(19, 19, 19, .46);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-heading h1 {
  margin: 7px 0 5px;
  max-width: 370px;
  font-size: clamp(31px, 9vw, 44px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}
.hero-heading p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  letter-spacing: .02em;
}

.hero-content { padding: 26px 20px 0; }
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.price-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin: 23px 0 18px;
}
.old-price,
.new-price {
  font-size: clamp(25px, 7vw, 30px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 750;
}
.old-price {
  color: #9c978f;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.new-price { color: var(--text); }
.discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 57px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, #343535 0%, #232424 100%);
  box-shadow: 0 16px 34px rgba(31, 31, 30, .20);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.primary-button:hover { transform: translateY(-1px); box-shadow: 0 19px 40px rgba(31,31,30,.24); }
.primary-button:active { transform: translateY(0); }
.primary-button:disabled { opacity: .62; cursor: wait; }
.sold-note {
  margin: 11px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.section { padding: 43px 16px 0; }
.product-section {
  padding-bottom: 45px;
  background:
    radial-gradient(circle at 100% 8%, rgba(198,166,123,.22), transparent 28%),
    linear-gradient(180deg, #eee6db 0%, #f5f0ea 100%);
}
.section-heading { margin: 0 4px 19px; }
.eyebrow {
  display: inline-block;
  color: var(--wine);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow-light { color: rgba(255,255,255,.72); }
.section-heading h2,
.order-card h2 {
  margin: 7px 0 0;
  font-size: clamp(28px, 8vw, 37px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 780;
}

.product-story {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 29px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.story-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.story-body { padding: 23px 18px 20px; }
.story-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.story-body > p + p { margin-top: 13px; }
.spec-list {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.4;
}
.spec-row span { color: var(--muted); }
.spec-row strong { text-align: right; font-weight: 700; }
.care-note {
  margin: 22px 0;
  padding: 17px;
  border-radius: 20px;
  background: var(--wine-soft);
}
.care-note h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -.02em;
}
.care-note p {
  margin: 0;
  color: #655c57;
  font-size: 13px;
  line-height: 1.58;
}
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ece6df;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.product-gallery figcaption {
  padding: 11px 13px 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.reviews-section {
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--surface);
}
.reviews-carousel { position: relative; }
.carousel-window {
  overflow: hidden;
  border-radius: 26px;
}
.carousel-track {
  display: flex;
  transition: transform .42s cubic-bezier(.22,.75,.25,1);
  touch-action: pan-y;
}
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 242px;
  padding: 22px 20px;
  border: 1px solid rgba(47,43,38,.08);
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.97), rgba(244,238,230,.94));
  box-shadow: 0 18px 45px rgba(46,38,31,.09);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--graphite);
  font-weight: 800;
}
.review-top h3 {
  margin: 0 0 2px;
  font-size: 15px;
}
.review-top span:not(.review-avatar) {
  color: var(--muted);
  font-size: 12px;
}
.stars {
  margin-top: 17px;
  color: #a06b37;
  font-size: 14px;
  letter-spacing: .1em;
}
.review-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: rgba(34,34,33,.88);
  box-shadow: 0 10px 24px rgba(29,29,28,.18);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.carousel-arrow-prev { left: -7px; }
.carousel-arrow-prev::before { transform: translate(-38%, -50%) rotate(-135deg); }
.carousel-arrow-next { right: -7px; }
.carousel-arrow-next::before { transform: translate(-62%, -50%) rotate(45deg); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8c0b8;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.carousel-dots button.is-active { width: 24px; background: var(--wine); }

.order-section {
  padding: 0 16px 42px;
  background:
    radial-gradient(circle at 88% 0%, rgba(150,52,48,.40), transparent 38%),
    linear-gradient(180deg, #282929 0%, #1d1e1e 100%);
}
.order-card {
  transform: translateY(-1px);
  padding: 34px 19px 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 0 0 29px 29px;
  color: #fff;
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 65px rgba(0,0,0,.22);
}
.order-card h2 { color: #fff; }
.order-intro {
  margin: 11px 0 22px;
  color: rgba(255,255,255,.67);
  font-size: 14px;
  line-height: 1.58;
}
.order-form { display: grid; gap: 15px; }
.field-group { position: relative; }
.field-group label {
  display: block;
  margin: 0 0 7px 3px;
  color: rgba(255,255,255,.73);
  font-size: 12px;
  font-weight: 650;
}
.field-group input {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  outline: none;
  color: #f8f7f4;
  caret-color: #fff;
  background: rgba(255,255,255,.085);
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field-group input::placeholder { color: rgba(255,255,255,.37); }
.field-group input:focus {
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.115);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}
.field-group.has-error input {
  border-color: #da746f;
  box-shadow: 0 0 0 4px rgba(218,116,111,.09);
}
.field-error {
  min-height: 16px;
  margin: 6px 3px 0;
  color: #f2a6a1;
  font-size: 11px;
  line-height: 1.35;
}
.form-button {
  margin-top: 1px;
  color: #201f1d;
  background: linear-gradient(180deg, #fff 0%, #ede7df 100%);
  box-shadow: 0 15px 35px rgba(0,0,0,.22);
}
.privacy-note {
  margin: -3px 3px 0;
  color: rgba(255,255,255,.47);
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}
.form-message {
  min-height: 16px;
  margin: 0;
  color: #b8ddb1;
  text-align: center;
  font-size: 12px;
}
.form-message.is-error { color: #f2a6a1; }

.site-footer {
  padding: 30px 20px 34px;
  color: #6f6b65;
  background: #e8e0d6;
  text-align: center;
  font-size: 12px;
  line-height: 1.62;
}
.footer-title {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 800;
}
.site-footer p { margin: 8px 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 13px;
  margin: 15px 0 0;
}
.footer-links a {
  color: #484541;
  text-decoration: underline;
  text-decoration-color: rgba(72,69,65,.28);
  text-underline-offset: 3px;
}
.registry-note { color: #868078; }

@media (min-width: 430px) {
  .hero-content { padding-left: 25px; padding-right: 25px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .order-section { padding-left: 20px; padding-right: 20px; }
  .story-body { padding: 25px 22px 23px; }
  .product-gallery { grid-template-columns: 1fr 1fr; }
  .product-gallery figcaption { min-height: 50px; }
}

@media (max-width: 360px) {
  .hero-media,
  .hero-media img { min-height: 575px; }
  .hero-heading { left: 11px; right: 11px; top: 11px; padding: 15px; border-radius: 20px; }
  .hero-heading h1 { font-size: 29px; }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .section { padding-left: 11px; padding-right: 11px; }
  .order-section { padding-left: 11px; padding-right: 11px; }
  .old-price, .new-price { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
