:root {
  --page-bg: #e8ece0;
  --card: rgba(255, 255, 252, 0.96);
  --paper: #fbfaf6;
  --text: #303229;
  --muted: #6e7467;
  --soft: #eef1e8;
  --line: rgba(74, 80, 63, 0.13);
  --accent: #5f7146;
  --accent-dark: #384629;
  --stone: #d8d5cd;
  --sand: #d9c9af;
  --danger: #a24d42;
  --shadow: 0 22px 70px rgba(50, 56, 43, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(119, 146, 83, 0.24), transparent 34%),
    linear-gradient(180deg, #f4f6ef 0%, var(--page-bg) 46%, #ded9cf 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page-shell {
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(251,250,246,0.72), rgba(238,241,232,0.76));
  box-shadow: 0 0 0 1px rgba(57, 63, 47, 0.05), 0 20px 80px rgba(37, 43, 32, 0.10);
}

.page { overflow: hidden; }
.section { padding: 36px 16px 0; }
.section-intro {
  text-align: center;
  margin: 0 auto 16px;
  padding: 0 12px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(95, 113, 70, 0.10);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 5px 0 0;
  font-size: clamp(36px, 11vw, 54px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
h2 {
  margin: 12px 0 0;
  font-size: 27px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero { padding: 12px 12px 0; }
.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  overflow: hidden;
  background: #d8d8d0;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-photo {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 13, 0.04) 24%, rgba(14, 17, 13, 0.48) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-title-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  padding: 18px 18px 17px;
  border-radius: 26px;
  color: #fffdf7;
  background: rgba(37, 42, 31, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  text-align: center;
}
.hero-title-card span {
  display: block;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}
.hero-body {
  padding: 22px 12px 0;
  text-align: center;
}
.lead {
  margin: 0 auto 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  max-width: 410px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.price-old,
.price-current {
  font-size: 25px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.055em;
}
.price-old {
  color: rgba(48, 50, 41, 0.42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current { color: var(--accent-dark); }
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(95, 113, 70, 0.13);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.button-primary {
  width: min(100%, 330px);
  background: linear-gradient(180deg, #718457 0%, #445532 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(72, 89, 51, 0.30);
}
.button:active { transform: translateY(1px) scale(0.99); }
.button:disabled { opacity: .68; cursor: progress; }
.sold-note {
  margin: 10px 0 0;
  color: rgba(48, 50, 41, 0.55);
  font-size: 13px;
  font-weight: 650;
}

.story-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 20px 65px rgba(57, 63, 49, 0.10);
}
.story-photo {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  object-position: center;
  background: var(--stone);
}
.story-copy {
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, rgba(255,255,252,0.98) 0%, rgba(246,246,239,0.96) 100%);
}
.story-copy p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}
.facts-grid {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.fact-item {
  padding: 14px 14px 13px;
  border-radius: 22px;
  background: rgba(238, 241, 232, 0.72);
  border: 1px solid rgba(74, 80, 63, 0.08);
}
.fact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}
.fact-item p { margin: 0; font-size: 14px; line-height: 1.45; }
.mini-note {
  margin: 18px 0 18px;
  padding: 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(95,113,70,0.12), rgba(216,201,175,0.20));
  border: 1px solid rgba(95,113,70,0.10);
}
.mini-note h3 {
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -0.035em;
}
.mini-note p { margin: 0; font-size: 14.5px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(74, 80, 63, 0.08);
  background: var(--stone);
}

.reviews-section { padding-top: 38px; }
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 8px;
  align-items: center;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(55, 61, 48, 0.10);
}
.carousel-track {
  display: flex;
  transition: transform .42s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 12px;
}
.review-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  background: var(--stone);
}
.review-copy { padding: 16px 4px 4px; }
.review-copy h3 {
  margin-bottom: 7px;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.review-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.carousel-arrow {
  width: 36px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,252,0.84);
  color: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(48, 54, 41, 0.12);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(54, 62, 41, 0.22);
  transition: width .22s ease, background .22s ease;
}
.carousel-dots button.is-active {
  width: 24px;
  background: var(--accent);
}

.order-section { padding: 42px 16px 34px; }
.order-card {
  padding: 26px 18px 20px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,252,0.98), rgba(244,244,236,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.order-card h2 { margin-bottom: 10px; }
.order-card > p {
  margin: 0 auto 20px;
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.order-form { text-align: left; }
.field-group { margin-bottom: 13px; }
.field-group label {
  display: block;
  margin: 0 0 7px 4px;
  color: rgba(48,50,41,0.72);
  font-size: 13px;
  font-weight: 750;
}
.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(74,80,63,0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field-group input:focus {
  border-color: rgba(95,113,70,0.52);
  box-shadow: 0 0 0 4px rgba(95,113,70,0.11);
  background: #fff;
}
.field-group.has-error input {
  border-color: rgba(162, 77, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(162,77,66,0.08);
}
.field-error {
  min-height: 17px;
  margin: 5px 4px 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.35;
}
.order-form .button { width: 100%; margin-top: 2px; }
.privacy-note {
  margin: 10px 4px 0;
  color: rgba(48,50,41,0.48);
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}
.form-success {
  margin: 10px 4px 0;
  min-height: 18px;
  color: var(--accent-dark);
  font-size: 13px;
  text-align: center;
}
.form-success.is-error { color: var(--danger); }

.site-footer {
  padding: 24px 18px 30px;
  border-top: 1px solid rgba(74,80,63,0.10);
  background: rgba(44, 49, 38, 0.92);
  color: rgba(255, 255, 249, 0.80);
  font-size: 12.5px;
  line-height: 1.58;
  text-align: center;
}
.site-footer p { margin: 8px 0; }
.footer-title {
  margin-bottom: 8px;
  color: #fffdf7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin: 10px 0;
}
.footer-links a {
  color: #fffdf7;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,249,0.25);
}
.registry-note { opacity: .76; }

@media (max-width: 380px) {
  .hero-photo-wrap { min-height: 585px; border-radius: 30px; }
  .hero-photo { height: 585px; }
  .hero-title-card { left: 12px; right: 12px; bottom: 14px; }
  .reviews-carousel { grid-template-columns: 32px 1fr 32px; gap: 6px; }
  .carousel-arrow { width: 32px; }
  .review-card img { height: 210px; }
}
