
:root {
  --bg: #f6f4f1;
  --bg-soft: #fbfaf8;
  --card: rgba(255, 255, 255, 0.92);
  --card-soft: rgba(252, 251, 249, 0.96);
  --text: #262422;
  --muted: #6f6860;
  --line: rgba(38, 36, 34, 0.08);
  --accent: #2d2a27;
  --accent-soft: rgba(45, 42, 39, 0.08);
  --danger: #bb5c4d;
  --success: #556251;
  --shadow: 0 22px 50px rgba(57, 43, 32, 0.08);
}
* { 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,255,255,0.9), transparent 30%),
    linear-gradient(180deg, #fcfbf9 0%, #f4f1ed 48%, #efebe7 100%);
}
a { color: inherit; }
img { display: block; width: 100%; height: auto; }
button, input { font: inherit; }
.page-shell { min-height: 100vh; padding: 14px 0 26px; }
.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;
  overflow: hidden;
  margin: 0 14px;
  border-radius: 34px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(38,36,34,0.06);
}
.hero-card img {
  aspect-ratio: 0.665 / 1;
  object-fit: cover;
}
.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
}
.hero-kicker, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(45,42,39,0.07);
  color: #55514d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #272421;
}
.hero-body { margin: 0 14px; padding: 0 6px; }
.hero-body-center { text-align: center; }
.lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.68;
  color: #5f5851;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.price-old, .price-current {
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price-old {
  color: #b0a69b;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 700;
}
.price-current { color: #25211f; font-weight: 800; }
.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, #35312d 0%, #25211f 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(49, 40, 31, 0.18);
}
.meta-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #857d75;
  text-align: center;
}
.flow-card, .order-card {
  margin: 0 14px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,248,245,0.98));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flow-main-photo {
  aspect-ratio: 0.84 / 1;
  object-fit: cover;
}
.flow-copy {
  padding: 22px 22px 18px;
}
.flow-copy h2 {
  margin: 12px 0 14px;
  font-size: 29px;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.flow-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #615a53;
}
.flow-copy p + p { margin-top: 14px; }
.size-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.size-strip span {
  min-width: 50px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(45,42,39,0.06);
  color: #2d2a27;
  font-weight: 700;
}
.flow-gallery {
  display: grid;
  gap: 12px;
  padding: 0 22px 22px;
}
.flow-gallery figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(250,248,245,0.9);
  border: 1px solid rgba(38,36,34,0.06);
}
.flow-gallery img {
  aspect-ratio: 0.88 / 1;
  object-fit: cover;
}
.flow-gallery figcaption {
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #6a635c;
}
.section-head {
  margin: 0 14px 14px;
  text-align: center;
}
.section-head h2 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.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%;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(38,36,34,0.06);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-city {
  font-size: 12px;
  color: #8a8178;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(45,42,39,0.08);
  color: #2d2a27;
  font-weight: 800;
}
.review-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.review-card p {
  margin: 0;
  color: #5e574f;
  font-size: 15px;
  line-height: 1.68;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 22px rgba(57, 43, 32, 0.10);
  cursor: pointer;
  z-index: 2;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2d2a27;
  border-right: 2px solid #2d2a27;
  margin: 0 auto;
}
.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;
  border-radius: 50%;
  border: 0;
  background: rgba(45,42,39,0.18);
  cursor: pointer;
}
.carousel-dots button.is-active { background: #312c28; }
.order-card-soft {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,248,245,0.98));
}
.order-card h2 {
  margin: 12px 0 10px;
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.order-card > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.72;
  color: #615a53;
}
.order-form { display: flex; flex-direction: column; gap: 14px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label {
  font-size: 14px;
  font-weight: 600;
  color: #2e2926;
}
.field-group input {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(38,36,34,0.12);
  padding: 0 16px;
  background: #fff;
  color: #262422;
  outline: none;
}
.field-group input::placeholder { color: #aba297; }
.field-group.has-error input {
  border-color: rgba(187,92,77,0.5);
  background: rgba(255,244,243,0.9);
}
.field-error {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--danger);
}
.privacy-note {
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #8a8178;
  text-align: center;
}
.form-success {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--success);
  text-align: center;
}
.form-success.is-error { color: var(--danger); }
.site-footer-soft {
  margin-top: 18px;
  padding: 0 14px 10px;
  text-align: center;
  color: #736c64;
}
.footer-title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #37322e;
}
.site-footer p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(55,50,46,0.2);
}
.registry-note { color: #8a8178; }
.legal-body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fcfbf9 0%, #f1ede8 100%);
  color: #262422;
  padding: 20px 14px;
}
.legal-page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 24px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(38,36,34,0.08);
  box-shadow: var(--shadow);
}
.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: #706861;
  text-decoration: none;
}
.legal-page h1 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.legal-page h2 {
  margin: 18px 0 10px;
  font-size: 18px;
  line-height: 1.2;
}
.legal-page p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #615a53;
}
.legal-page p + h2 { margin-top: 18px; }
