:root {
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --paper-2: #ebe8df;
  --text: #27241f;
  --muted: #716b62;
  --line: rgba(39, 36, 31, .12);
  --accent: #8c7156;
  --accent-2: #c8b8a2;
  --dark: #171512;
  --shadow: 0 24px 70px rgba(39, 36, 31, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(200, 184, 162, .5), transparent 32rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 48%, #f6f2eb 100%);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(251, 250, 246, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.topbar__phone {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 82px) 0;
}
.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: calc(100svh - 66px);
  padding-top: clamp(24px, 5vw, 62px);
}
.hero__content { max-width: 560px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: .94;
  letter-spacing: -.065em;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 4.8vw, 52px);
  line-height: 1;
  letter-spacing: -.055em;
}
h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
p { color: var(--muted); }
.hero__lead {
  margin-bottom: 22px;
  font-size: clamp(17px, 2.1vw, 21px);
  color: #5d574f;
}
.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 14px 40px rgba(39, 36, 31, .08);
}
.price-card__label,
.price-card__old span,
.sticky-cta span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-card strong {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -.05em;
}
.price-card__old {
  text-align: right;
  color: var(--muted);
  font-weight: 800;
}
.price-card__old s { color: #9b9288; font-size: 18px; }
.price-card__old b { display: block; max-width: 220px; color: var(--text); font-size: 16px; line-height: 1.2; }
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 21, 18, .2);
}
.button--ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.54);
  color: var(--text);
}
.button--full { width: 100%; }
.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(140, 113, 86, .10);
  color: #6a563f;
  font-size: 13px;
  font-weight: 800;
}
.hero__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  transform: rotate(.6deg);
}
.hero__media img {
  width: 100%;
  height: min(72svh, 720px);
  object-fit: cover;
  object-position: center;
}
.hero__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 15px 17px;
  border-radius: 20px;
  background: rgba(255,253,248,.88);
  color: var(--text);
  font-weight: 900;
  line-height: 1.05;
  box-shadow: 0 16px 42px rgba(39,36,31,.16);
}
.section__head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section__head.compact { max-width: 680px; }
.problem__grid,
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.problem__grid article,
.benefit,
.order-card,
.sizes__card,
.faq details {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.74);
  box-shadow: 0 12px 38px rgba(39, 36, 31, .06);
}
.problem__grid article {
  padding: 24px;
  border-radius: 24px;
}
.problem__grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}
.card-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper-2);
}
.card-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #514c46;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 5px #eee5d8;
}
.benefits__grid { grid-template-columns: repeat(4, 1fr); }
.benefit {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
}
.benefit__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  display: block;
  overflow: hidden;
  min-height: 310px;
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: 0 14px 38px rgba(39, 36, 31, .08);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery__item:hover img { transform: scale(1.035); }
.sizes__card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,253,248,.92), rgba(235,232,223,.72));
}
.option-panel,
.option-group,
.price-list {
  display: grid;
  gap: 12px;
}
.option-group > strong {
  color: var(--text);
  font-size: 15px;
  letter-spacing: -.02em;
}
.price-list {
  grid-template-columns: 1fr;
}
.price-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 14px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
}
.price-list b,
.price-list em {
  font-style: normal;
  font-weight: 900;
}
.price-list em { color: var(--accent); }
.sizes__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sizes__chips span {
  padding: 16px 12px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 900;
}
.sizes__chips--colors span:nth-child(1) { background: #fff; }
.sizes__chips--colors span:nth-child(2) { background: #f3eadb; }
.sizes__chips--colors span:nth-child(3) { background: #e7e7e4; }
.sizes__chips--colors span:nth-child(4) { background: #8c7156; color: #fff; }
.option-group--colors { gap: 14px; }
.color-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.color-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(39,36,31,.06);
}
.color-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center;
}
.color-card__body {
  display: grid;
  gap: 2px;
  padding: 12px 12px 13px;
}
.color-card__body b {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.color-card__body small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}
.selected-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(140,113,86,.10);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.selected-price strong {
  color: var(--text);
  font-size: 22px;
  letter-spacing: -.04em;
}
.form-note a,
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.order-section { padding-bottom: 48px; }
.order-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(18px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,184,162,.42), transparent 24rem),
    rgba(255,253,248,.88);
}
.timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(140, 113, 86, .10);
  color: var(--muted);
  font-weight: 800;
}
.timer strong { color: var(--text); font-size: 18px; }
.order-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background: #fffdf8;
  border: 1px solid var(--line);
}
.order-form label {
  display: grid;
  gap: 7px;
  color: #4c4740;
  font-size: 14px;
  font-weight: 850;
}
.order-form input,
.order-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(39, 36, 31, .16);
  border-radius: 17px;
  background: #f8f5ee;
  padding: 0 15px;
  color: var(--text);
  font: inherit;
  outline: none;
}
.order-form input:focus,
.order-form select:focus {
  border-color: rgba(140,113,86,.6);
  box-shadow: 0 0 0 4px rgba(140,113,86,.12);
}
.color-choice {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}
.color-choice legend {
  padding: 0;
  color: #4c4740;
  font-size: 14px;
  font-weight: 850;
}
.color-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.color-choice__option {
  position: relative;
  display: block;
  cursor: pointer;
}
.order-form .color-choice__option input[type="radio"] {
  position: absolute;
  inset: 12px auto auto 12px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.color-choice__visual {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(39, 36, 31, .16);
  border-radius: 18px;
  background: #f8f5ee;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.color-choice__visual img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.color-choice__visual span {
  padding: 0 4px 3px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.color-choice__option:hover .color-choice__visual { transform: translateY(-1px); }
.color-choice__option input[type="radio"]:checked + .color-choice__visual {
  border-color: rgba(140,113,86,.72);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(140,113,86,.13), 0 12px 32px rgba(39,36,31,.08);
}
.form-note {
  margin: 0;
  font-size: 12px;
  color: #8a8278;
  text-align: center;
}
.faq {
  padding-top: 28px;
  padding-bottom: 120px;
}
.faq details {
  margin-bottom: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding: 0 20px 18px; margin: 0; }
.footer {
  padding: 26px 16px 110px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(640px, calc(100% - 24px));
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,253,248,.9);
  box-shadow: 0 18px 55px rgba(23,21,18,.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}
.sticky-cta strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.04em;
}
.sticky-cta .button { min-height: 48px; padding-inline: 22px; }

@media (max-width: 940px) {
  .hero,
  .split,
  .sizes__card,
  .order-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__content { max-width: none; }
  .hero__media { transform: none; }
  .hero__media img { height: auto; max-height: none; }
  .problem__grid,
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .card-media img { height: auto; }
}

@media (max-width: 640px) {
  .topbar { padding: 12px 14px; }
  .topbar__phone { display: none; }
  .section { width: min(100% - 24px, 1160px); padding: 34px 0; }
  .hero { padding-top: 22px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .price-card { align-items: flex-start; }
  .price-card strong { font-size: 34px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-row span:last-child { grid-column: 1 / -1; }
  .problem__grid,
  .benefits__grid,
  .gallery,
  .sizes__chips { grid-template-columns: 1fr; }
  .gallery__item,
  .gallery__item--wide { grid-column: auto; min-height: auto; }
  .gallery__item img { min-height: auto; }
  .problem__grid span,
  .benefit__icon { margin-bottom: 20px; }
  .benefit { min-height: auto; }
  .sizes__card,
  .order-card { border-radius: 26px; }
  .sticky-cta { bottom: 10px; }
  .sticky-cta .button { width: auto; min-width: 132px; }
  .footer { padding-bottom: 96px; }
}

.legal-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) 0 140px;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 850;
}
.legal-card {
  padding: clamp(22px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,253,248,.88);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  font-size: clamp(34px, 6vw, 58px);
}
.legal-card h2 {
  margin-top: 28px;
  font-size: clamp(22px, 4vw, 32px);
}
.legal-card li { margin-bottom: 8px; color: var(--muted); }
.legal-card a { text-decoration: underline; text-underline-offset: 3px; }


.brand__logo-image{display:block;width:140px;max-width:42vw;height:auto;}


.price-card__details {
  text-align: right;
  color: var(--muted);
  font-weight: 800;
}
.price-card__details span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-card__details b {
  display: block;
  max-width: 220px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}
