@font-face {
  font-family: 'Onest';
  src: url('../fonts/onest-cyrillic.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/onest-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light dark;

  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f2eee7;
  --surface-3: #e9e3d8;
  --ink: #1a1a18;
  --ink-2: #56534c;
  --ink-3: #6f6a60;
  --line: #e2dcd1;
  --accent: #a44a28;
  --accent-hover: #8d3d1e;
  --accent-ink: #ffffff;
  --accent-soft: #f7ece5;
  --dark-block: #1f1d19;
  --dark-block-ink: #f5f1ea;
  --ok: #2f6f4f;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;

  --section-y: clamp(2.5rem, 7vw, 7rem);
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --header-h: 64px;

  --fs-hero: clamp(1.95rem, 1.15rem + 3vw, 3.35rem);
  --fs-h2: clamp(1.65rem, 1.2rem + 2vw, 2.7rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  --fs-lead: clamp(1.02rem, 0.97rem + 0.3vw, 1.2rem);
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-1: 0 1px 2px rgba(26, 26, 24, 0.05), 0 4px 16px rgba(26, 26, 24, 0.05);
  --shadow-2: 0 2px 6px rgba(26, 26, 24, 0.07), 0 16px 40px rgba(26, 26, 24, 0.09);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14130f;
    --surface: #1c1a16;
    --surface-2: #232019;
    --surface-3: #2c2822;
    --ink: #f2efe9;
    --ink-2: #b3ada2;
    --ink-3: #8b857a;
    --line: #332f28;
    --accent: #e07a4f;
    --accent-hover: #ef8b60;
    --accent-ink: #14130f;
    --accent-soft: #2a201a;
    --dark-block: #232019;
    --dark-block-ink: #f2efe9;
    --ok: #6bbd92;
    --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-2: 0 2px 6px rgba(0, 0, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.45);
  }
}

:root[data-theme='light'] {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f2eee7;
  --surface-3: #e9e3d8;
  --ink: #1a1a18;
  --ink-2: #56534c;
  --ink-3: #6f6a60;
  --line: #e2dcd1;
  --accent: #a44a28;
  --accent-hover: #8d3d1e;
  --accent-ink: #ffffff;
  --accent-soft: #f7ece5;
  --dark-block: #1f1d19;
  --dark-block-ink: #f5f1ea;
  --ok: #2f6f4f;
  --shadow-1: 0 1px 2px rgba(26, 26, 24, 0.05), 0 4px 16px rgba(26, 26, 24, 0.05);
  --shadow-2: 0 2px 6px rgba(26, 26, 24, 0.07), 0 16px 40px rgba(26, 26, 24, 0.09);
}

:root[data-theme='dark'] {
  --bg: #14130f;
  --surface: #1c1a16;
  --surface-2: #232019;
  --surface-3: #2c2822;
  --ink: #f2efe9;
  --ink-2: #b3ada2;
  --ink-3: #8b857a;
  --line: #332f28;
  --accent: #e07a4f;
  --accent-hover: #ef8b60;
  --accent-ink: #14130f;
  --accent-soft: #2a201a;
  --dark-block: #232019;
  --dark-block-ink: #f2efe9;
  --ok: #6bbd92;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 2px 6px rgba(0, 0, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-variant-numeric: tabular-nums;
  padding-bottom: env(safe-area-inset-bottom);
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--s-3) var(--s-4);
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--surface {
  background: var(--surface-2);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

h1,
.h1 {
  font-size: var(--fs-hero);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2,
.h2 {
  font-size: var(--fs-h2);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3,
.h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 62ch;
}

.muted {
  color: var(--ink-2);
}

.fineprint {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-3);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  max-width: 68ch;
}

.section-head .lead {
  margin-top: var(--s-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.12s var(--ease), opacity 0.2s var(--ease);
}

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

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink-3);
  background: var(--surface-2);
}

.btn--wa {
  background: #1fa855;
  color: #ffffff;
}

.btn--wa:hover {
  background: #178a45;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}

.logo__mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.header-nav {
  display: none;
  gap: clamp(0.9rem, 1.6vw, 1.6rem);
  font-size: var(--fs-small);
  color: var(--ink-2);
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-contact {
  display: none;
  align-items: center;
  gap: var(--s-4);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  white-space: nowrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  flex: none;
}

.icon-btn:hover {
  border-color: var(--ink-3);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
  flex: none;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.18s var(--ease);
}

.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  bottom: 0;
  z-index: 98;
  background: var(--bg);
  padding: var(--s-5) var(--gutter) calc(var(--s-7) + 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  align-content: start;
  gap: var(--s-5);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease);
}

.mobile-menu[data-open='false'] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.mobile-menu__nav {
  display: grid;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__nav a:active {
  color: var(--accent);
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (min-width: 900px) {
  .header-nav,
  .header-contact {
    display: flex;
  }

  .burger,
  .mobile-menu {
    display: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

@supports not (min-height: 100svh) {
  .hero {
    min-height: 560px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(14, 13, 11, 0.84) 0%, rgba(14, 13, 11, 0.9) 100%);
}

@media (min-width: 900px) {
  .hero__scrim {
    background: linear-gradient(to right, rgba(14, 13, 11, 0.91) 0%, rgba(14, 13, 11, 0.78) 46%, rgba(14, 13, 11, 0.3) 100%);
  }
}

.hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: 100%;
  color: #f7f4ee;
}

.hero__title {
  color: #ffffff;
  max-width: 19ch;
}

.hero__price {
  color: #f0b79b;
  white-space: nowrap;
}

.hero__lead {
  margin-top: var(--s-5);
  color: #ded8cf;
  font-size: var(--fs-lead);
  max-width: 46ch;
  line-height: 1.55;
}

.hero__note {
  margin-top: var(--s-4);
  color: #b9b2a8;
  font-size: var(--fs-xs);
  max-width: 46ch;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  font-size: var(--fs-xs);
  color: #ece7df;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero__title {
    max-width: 24ch;
  }

  .hero__offer {
    white-space: nowrap;
  }
}

.form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}

.form-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.form-card__sub {
  margin-top: var(--s-2);
  color: var(--ink-2);
  font-size: var(--fs-small);
}

.form {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field__label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-2);
}

.input,
.select {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  font-size: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f6a60' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}

.input:focus,
.select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.input[aria-invalid='true'] {
  border-color: #c0392b;
}

.field__error {
  font-size: var(--fs-xs);
  color: #c0392b;
  min-height: 1em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--ink-2);
}

.consent {
  padding-block: 0.35rem;
  cursor: pointer;
}

.consent input[type='checkbox'] {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--accent);
  flex: none;
  cursor: pointer;
}

.consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__status {
  font-size: var(--fs-small);
  min-height: 1.2em;
}

.form__status[data-state='error'] {
  color: #c0392b;
}

.form__status[data-state='ok'] {
  color: var(--ok);
}

.facts {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}

.fact {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-4) 0;
}

.fact__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.fact__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.fact__text {
  font-size: var(--fs-small);
  color: var(--ink-2);
}

@media (min-width: 760px) {
  .facts {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
  }
}

.packages {
  display: grid;
  gap: var(--s-5);
}

@media (max-width: 859px) {
  .packages {
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 340px);
    gap: var(--s-4);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) var(--s-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .packages::-webkit-scrollbar {
    display: none;
  }

  .pkg {
    scroll-snap-align: start;
  }
}

.packages__hint {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin-top: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

.packages__hint svg {
  width: 16px;
  height: 16px;
  flex: none;
}

@media (max-width: 859px) {
  .packages__hint {
    display: flex;
  }
}

@media (min-width: 860px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pkg {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.pkg--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-2);
}

@media (min-width: 860px) {
  .pkg--featured {
    transform: translateY(-14px);
  }
}

.pkg__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-3);
}

.pkg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.pkg__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  gap: var(--s-4);
}

.pkg__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pkg__summary {
  font-size: var(--fs-small);
  color: var(--ink-2);
  margin-top: var(--s-1);
}

.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pkg__price-value {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pkg__price-unit {
  font-size: var(--fs-small);
  color: var(--ink-2);
}

.pkg__term {
  font-size: var(--fs-small);
  color: var(--ink-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}

.pkg__term b {
  color: var(--ink);
}

.pkg__list {
  display: grid;
  gap: 0.6rem;
  font-size: var(--fs-small);
  flex: 1;
}

.pkg__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--ink-2);
}

.pkg__list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
  flex: none;
}

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  background: transparent;
  cursor: pointer;
  margin: 0;
}

.range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 100px;
  background: var(--surface-3);
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -11px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-1);
}

.range::-moz-range-track {
  height: 6px;
  border-radius: 100px;
  background: var(--surface-3);
}

.range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-1);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.chip {
  padding: 0.6rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.chip:hover {
  border-color: var(--ink-3);
}

.chip[aria-pressed='true'] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

.quiz {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

@media (min-width: 900px) {
  .quiz {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .quiz__aside {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

.quiz__perks {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
  font-size: var(--fs-small);
  color: var(--ink-2);
}

.quiz__perks li {
  position: relative;
  padding-left: 1.6rem;
}

.quiz__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.quiz__aside,
.quiz__panel {
  min-width: 0;
}

.quiz__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-1);
  display: grid;
  gap: var(--s-4);
  align-content: start;
}

.quiz__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: var(--fs-xs);
}

.quiz__counter {
  color: var(--ink-3);
  font-weight: 600;
  white-space: nowrap;
}

.quiz__counter b {
  color: var(--accent);
}

.quiz__label {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-align: right;
}

.quiz__progress {
  height: 4px;
  border-radius: 100px;
  background: var(--surface-3);
  overflow: hidden;
}

.quiz__progress span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 100px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.quiz__question {
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.quiz__hint {
  margin-top: var(--s-2);
  font-size: var(--fs-small);
  color: var(--ink-2);
}

.quiz__options {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  width: 100%;
  min-height: 60px;
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.quiz__option:hover {
  border-color: var(--ink-3);
}

.quiz__option::before {
  content: '';
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--ink-3);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.quiz__option[aria-pressed='true'] {
  border-color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

.quiz__option[aria-pressed='true']::before {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 5px var(--accent);
}

.quiz__option--visual {
  min-height: 104px;
  padding: 0.5rem 0.625rem 0.5rem 0.5rem;
  gap: 0.625rem;
}

.quiz__option--visual::before {
  order: 3;
  margin-left: auto;
}

.quiz__option-thumb {
  position: relative;
  width: clamp(60px, 20vw, 96px);
  aspect-ratio: 1;
  flex: none;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-3);
}

.quiz__option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz__option-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 28px no-repeat,
    color-mix(in srgb, var(--accent) 80%, transparent);
  transition: opacity 0.18s var(--ease);
}

.quiz__option--visual[aria-pressed='true'] .quiz__option-thumb::after {
  opacity: 1;
}

.quiz__option-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  text-align: left;
  overflow-wrap: break-word;
}

.quiz__option-text small {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.35;
}

.quiz__range {
  margin-top: var(--s-5);
}

.quiz__range-value {
  display: block;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s-4);
}

.quiz__range-value small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-left: 0.35rem;
}

.quiz__range-scale {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--ink-3);
}

.quiz__contacts {
  display: grid;
  gap: var(--s-3);
}

.quiz__estimate {
  background: var(--dark-block);
  color: var(--dark-block-ink);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--s-2);
}

.quiz__estimate-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a8a196;
}

.quiz__estimate-sum {
  font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.quiz__nav {
  display: flex;
  gap: var(--s-3);
}

.quiz__nav .btn {
  flex: 1;
}

.quiz__nav .btn[hidden] {
  display: none;
}

.split {
  display: grid;
  gap: var(--s-5);
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
}

.incl {
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
}

.incl--in {
  background: var(--surface);
}

.incl--out {
  background: transparent;
  border-style: dashed;
}

.incl__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--s-4);
}

.incl__title svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.incl--in .incl__title svg {
  color: var(--ok);
}

.incl--out .incl__title svg {
  color: var(--ink-3);
}

.incl__list {
  display: grid;
  gap: 0.7rem;
  font-size: var(--fs-small);
}

.incl__list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-2);
}

.incl__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
}

.incl--in .incl__list li::before {
  background: var(--ok);
}

.guarantee {
  background: var(--dark-block);
  color: var(--dark-block-ink);
}

.guarantee .h2 {
  color: #ffffff;
  max-width: 20ch;
}

.guarantee__lead {
  color: #c8c1b6;
  margin-top: var(--s-4);
  font-size: var(--fs-lead);
  max-width: 52ch;
}

.guarantee__percent {
  color: #f0b79b;
}

.guarantee__steps {
  display: grid;
  gap: var(--s-5);
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 780px) {
  .guarantee__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }
}

.gstep {
  display: grid;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 2px solid rgba(255, 255, 255, 0.16);
}

.gstep__num {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f0b79b;
}

.gstep__text {
  color: #c8c1b6;
  font-size: var(--fs-small);
  line-height: 1.55;
}

.gstep__text b {
  color: #ffffff;
  font-weight: 600;
}

.guarantee__foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  justify-content: space-between;
}

.guarantee__clause {
  font-size: var(--fs-small);
  color: #a8a196;
  max-width: 52ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

@media (max-width: 640px) {
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filters .chip {
    flex: none;
  }
}

.gallery {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 780px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-3);
  aspect-ratio: 4 / 3;
}

@media (min-width: 780px) {
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(6) {
    aspect-ratio: auto;
  }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.7rem;
  background: linear-gradient(to top, rgba(14, 13, 11, 0.82), transparent);
  color: #ffffff;
  font-size: var(--fs-xs);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: var(--s-2);
}

.gallery__cap span:last-child {
  color: #e3d8cf;
  font-weight: 400;
}

.gallery__item[hidden] {
  display: none;
}

.steps {
  display: grid;
  gap: var(--s-5);
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1040px) {
  .steps {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-4);
  }
}

.step {
  display: grid;
  gap: var(--s-2);
  padding-top: var(--s-4);
  border-top: 2px solid var(--line);
  position: relative;
}

.step--accent {
  border-top-color: var(--accent);
}

.step__num {
  counter-increment: step;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}

.step--accent .step__num {
  color: var(--accent);
}

.step__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.step__text {
  font-size: var(--fs-small);
  color: var(--ink-2);
  line-height: 1.5;
}

.steps-media {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.steps-media img {
  border-radius: var(--r-md);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.gifts {
  display: grid;
  gap: var(--s-4);
}

@media (min-width: 880px) {
  .gifts {
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
  }
}

.gift-block {
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: var(--s-4);
  align-content: center;
}

.gift-block--accent {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}

.gift-block__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.gift-list {
  display: grid;
  gap: var(--s-3);
}

.gift-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: var(--s-3);
  align-items: center;
  font-size: var(--fs-small);
}

.gift-list svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--line);
}

.gift-choice {
  display: grid;
  gap: var(--s-3);
  counter-reset: gift;
}

.gift-choice li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  font-weight: 600;
}

.gift-choice li:last-child {
  border-bottom: 0;
}

.gift-choice__thumb {
  position: relative;
  width: clamp(72px, 20vw, 88px);
  aspect-ratio: 1;
  flex: none;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-3);
}

.gift-choice__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-choice__thumb::after {
  counter-increment: gift;
  content: counter(gift);
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.gift-choice__text {
  min-width: 0;
  overflow-wrap: break-word;
}

.gift-choice small {
  display: block;
  font-weight: 400;
  color: var(--ink-2);
  font-size: var(--fs-xs);
  line-height: 1.35;
  margin-top: 2px;
}

.docs {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 879px) {
  .doc-visual {
    order: 2;
    aspect-ratio: auto;
    padding-bottom: 7rem;
  }
}

@media (min-width: 880px) {
  .docs {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}

.doc-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      var(--surface) 0 26px,
      color-mix(in srgb, var(--line) 55%, transparent) 26px 27px
    );
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  align-content: start;
  gap: var(--s-4);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.doc-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
}

.doc-visual__head {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}

.doc-visual__clause {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: var(--s-3) var(--s-4);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--fs-small);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.doc-visual__stamp {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1.5rem, 5vw, 3rem);
  z-index: 2;
  width: clamp(88px, 22vw, 120px);
  height: clamp(88px, 22vw, 120px);
  border: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-11deg);
  padding: 0.5rem;
}

.req-list {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-5);
}

.req-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-3);
  align-items: start;
}

.req-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
  flex: none;
}

.req-list b {
  display: block;
  font-weight: 700;
}

.req-list span {
  font-size: var(--fs-small);
  color: var(--ink-2);
}

.faq {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item:first-child {
  border-top: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 1.15rem 0;
  min-height: 60px;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  cursor: pointer;
  color: var(--ink);
}

.faq__q:hover {
  color: var(--accent);
}

.faq__icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}

.faq__q[aria-expanded='true'] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq__a[data-open='true'] {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding-bottom: 1.25rem;
  color: var(--ink-2);
  font-size: var(--fs-small);
  line-height: 1.6;
  max-width: 70ch;
}

.contacts {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
  .contacts {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-list {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-6);
}

.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-4);
  align-items: start;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 3px;
  flex: none;
}

.contact-list span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  margin-bottom: 2px;
}

.contact-list a,
.contact-list b {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: -0.6rem;
}

.contact-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--dark-block);
  color: #b8b1a6;
  padding-block: var(--section-y) var(--s-6);
  font-size: var(--fs-small);
}

.footer-grid {
  display: grid;
  gap: var(--s-6);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--s-7);
  }
}

.site-footer .logo {
  color: #ffffff;
  margin-bottom: var(--s-4);
}

.footer-col h3 {
  color: #ffffff;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}

.footer-col ul {
  display: grid;
}

.footer-col li {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: var(--s-3);
  font-size: var(--fs-xs);
  color: #8a847a;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (min-width: 760px) {
  .footer-legal {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fa855;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(31, 168, 85, 0.4);
  transition: transform 0.2s var(--ease);
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 899px) {
  .wa-float {
    display: none;
  }
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  padding: 10px var(--s-4) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-bar .btn {
  min-height: 50px;
  padding-inline: 0.75rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.mobile-bar .btn__icon {
  width: 18px;
  height: 18px;
}

@media (min-width: 900px) {
  .mobile-bar {
    display: none;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

.legal-page {
  max-width: 820px;
  margin-inline: auto;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
  margin-bottom: var(--s-4);
}

.legal-page h2 {
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  margin-top: var(--s-7);
  margin-bottom: var(--s-4);
}

.legal-page h3 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
  font-size: 1.05rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-2);
  margin-bottom: var(--s-3);
  line-height: 1.65;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.3rem;
  margin-bottom: var(--s-4);
}

.legal-page ul li {
  list-style: disc;
}

.legal-page ol li {
  list-style: decimal;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--s-5);
  font-size: var(--fs-small);
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: var(--s-3);
  border: 1px solid var(--line);
  vertical-align: top;
}

.legal-page th {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--ink);
}

.callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: var(--s-4) var(--s-5);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: var(--s-5);
}

.callout p:last-child {
  margin-bottom: 0;
}

.thanks {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--section-y);
}

.thanks__inner {
  max-width: 560px;
  display: grid;
  gap: var(--s-5);
  justify-items: center;
}

.thanks__mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

.thanks__mark svg {
  width: 38px;
  height: 38px;
}

.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .gallery__item:hover img {
    transform: none;
  }
}
