
:root {
  --bg: #f5f2ec;
  --text: #26221d;
  --muted: #6f665b;
  --surface: rgba(255,255,255,0.88);
  --line: rgba(73,57,39,0.12);
  --accent: #a87c36;
  --accent-2: #705123;
  --button: linear-gradient(180deg, #b58a46 0%, #8b6327 100%);
  --shadow: 0 24px 60px rgba(42, 33, 21, 0.12);
  --section-grad: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(244,240,233,0.98) 100%);
  --hero-grad: linear-gradient(180deg, rgba(10, 14, 18, 0.05) 0%, rgba(19, 17, 14, 0.5) 62%, rgba(20, 16, 12, 0.82) 100%);
  --review-bg: rgba(255,255,255,0.72);
  --footer-bg: #1f1a15;
  --footer-text: rgba(255,255,255,0.84);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: 430px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.7), transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  color: var(--text);
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: 100%;
  padding: 0 12px 28px;
}

.page {
  width: min(100%, var(--shell));
  margin: 0 auto;
  position: relative;
}

.hero {
  padding-top: 12px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-grad);
}

.hero-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(32px, 7.6vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 260px;
}

.hero-body {
  margin-top: -14px;
  position: relative;
  z-index: 2;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 18px 18px;
  box-shadow: var(--shadow);
}

.hero-lead,
.section-copy p,
.order-intro,
.meta-note,
.footer-copy,
.review-card p,
.field-note,
.legal-page p,
.thanks-lead,
.thanks-list li {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.hero-lead {
  margin: 0 0 14px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.price-row span {
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-old {
  color: rgba(111, 102, 91, 0.7);
  text-decoration: line-through;
}

.price-current {
  color: var(--text);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  padding: 0 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform .2s ease, opacity .2s ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary,
.button-submit {
  color: #fff;
  background: var(--button);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.button:disabled {
  opacity: 0.7;
  cursor: default;
}

.meta-note {
  margin: 10px 0 0;
  font-size: 13px;
}

.section {
  padding-top: 18px;
}

.story-block,
.order-card,
.reviews-block {
  background: var(--section-grad);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-image,
.story-side-image {
  width: 100%;
  object-fit: cover;
}

.story-image {
  aspect-ratio: 4 / 5;
}

.story-copy {
  padding: 18px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-copy h2,
.order-card h2,
.reviews-header h2,
.legal-page h1,
.thanks-card h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 6.5vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-copy p {
  margin: 0 0 12px;
}

.section-copy p:last-of-type {
  margin-bottom: 14px;
}

.spec-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-label {
  color: var(--muted);
}

.spec-value {
  color: var(--text);
  font-weight: 600;
}

.story-side {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.story-side-image {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
}

.note-box {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
}

.note-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.note-box p {
  margin: 0;
}

.reviews-block {
  padding: 18px;
}

.reviews-header {
  margin-bottom: 14px;
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.carousel-track {
  display: flex;
  transition: transform .35s ease;
}

.review-card {
  min-width: 100%;
  padding: 18px;
  background: var(--review-bg);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  align-items: baseline;
}

.review-meta strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.review-city {
  font-size: 13px;
  color: var(--muted);
}

.review-card p {
  margin: 0;
}

.carousel-arrows {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  cursor: pointer;
  position: relative;
}

.carousel-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.carousel-arrow-prev::before {
  transform: rotate(-135deg);
  left: 3px;
}

.carousel-arrow-next::before {
  transform: rotate(45deg);
  left: -3px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.order-card {
  padding: 20px 18px 18px;
}

.order-intro {
  margin: 0 0 16px;
}

.order-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--text);
  background: rgba(255,255,255,0.9);
  outline: none;
}

.field input:focus {
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.field.is-error input {
  border-color: rgba(189, 64, 64, 0.65);
  box-shadow: 0 0 0 3px rgba(189,64,64,0.08);
}

.field-error,
.form-message {
  min-height: 18px;
  font-size: 12px;
  line-height: 1.4;
  color: #b54343;
}

.form-message {
  margin-top: -2px;
}

.form-message.is-error {
  color: #b54343;
}

.field-note {
  margin: 0;
  font-size: 12px;
}

.footer {
  margin-top: 18px;
  background: var(--footer-bg);
  border-radius: 28px 28px 0 0;
  padding: 22px 18px 28px;
  color: var(--footer-text);
}

.footer-title {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: var(--footer-text);
}

.footer-copy + .footer-copy {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 14px;
}

.legal-body,
.thanks-body {
  padding: 16px;
}

.legal-page,
.thanks-card {
  width: min(100%, var(--shell));
  margin: 0 auto;
  background: var(--section-grad);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px 18px 24px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration: none;
  color: var(--accent-2);
}

.legal-page h2 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.thanks-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  font-size: 30px;
  margin-bottom: 16px;
}

.thanks-lead {
  margin: 0 0 16px;
}

.thanks-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.thanks-list li + li {
  margin-top: 8px;
}

.thanks-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.thanks-links a {
  color: var(--accent-2);
  text-decoration: none;
}

@media (min-width: 431px) {
  .page-shell {
    padding-top: 12px;
  }
  .page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.62) 0, rgba(255,255,255,0) calc(50% - 215px), rgba(255,255,255,0) calc(50% + 215px), rgba(255,255,255,0.62) 100%);
  }
}
