:root {
  --color-bg: #ffffff;
  --color-surface: #f2f2f2;
  --color-surface-strong: #e6e6e6;
  --color-ink: #262626;
  --color-dark: #3d3d3d;
  --color-darker: #333333;
  --color-black: #0d0d0d;
  --color-body: #6f6f6f;
  --color-muted: #9c9c9c;
  --color-line: #e3e3e3;
  --color-invert: #ffffff;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 20px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 18px 40px rgba(20, 20, 20, 0.12);
  --shadow-lg: 0 26px 60px rgba(20, 20, 20, 0.18);
  --container: 1160px;
  --gutter: 20px;
  --section-space: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-sans: "Poppins", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 700;
}

p {
  margin: 0;
}

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

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

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

input {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--color-ink);
  color: var(--color-invert);
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 14px;
}

.section-title {
  font-size: clamp(26px, 5vw, 34px);
}

.section-title--muted {
  color: var(--color-muted);
}

.section-title--centred {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transform: scale(0.2);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  border-radius: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn--light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-ink);
}

.btn--light:hover {
  background: #ffffff;
}

.btn--solid {
  background: var(--color-dark);
  color: var(--color-invert);
}

.btn--solid:hover {
  background: var(--color-ink);
}

.btn--ghost {
  color: var(--color-invert);
  padding-left: 4px;
}

.btn--ghost:hover {
  box-shadow: none;
}

.btn__arrow {
  transition: transform 0.25s var(--ease);
}

.btn--ghost:hover .btn__arrow {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px 0;
  color: var(--color-invert);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease), color 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: var(--color-ink);
  box-shadow: 0 6px 24px rgba(20, 20, 20, 0.08);
  padding: 10px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 17px;
  color: inherit;
  order: -1;
}

.logo__mark {
  display: inline-flex;
}

.logo__text {
  letter-spacing: -0.01em;
}

.nav {
  position: fixed;
  top: 66px;
  left: var(--gutter);
  right: var(--gutter);
  padding: 14px;
  background: #ffffff;
  color: var(--color-ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav__list {
  display: grid;
  gap: 4px;
}

.nav__link {
  position: relative;
  display: block;
  padding: 9px 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav__link:hover {
  background: var(--color-surface);
}

.header-search {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 5px 5px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled .header-search,
.site-header--solid .header-search {
  background: var(--color-surface);
  border-color: var(--color-line);
}

.header-search__field {
  width: 150px;
  border: 0;
  background: none;
  font-size: 13px;
  color: inherit;
}

.header-search__field::placeholder {
  color: currentColor;
  opacity: 0.65;
}

.header-search__field:focus {
  outline: none;
}

.header-search__button {
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled .header-search__button,
.site-header--solid .header-search__button {
  background: var(--color-dark);
  color: var(--color-invert);
}

.header-search__button:hover {
  transform: translateY(-1px);
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.burger__bar {
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.burger.is-active .burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 116px 0 60px;
  color: var(--color-invert);
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 90px;
  z-index: -2;
  background: linear-gradient(118deg, #4d4d4d 0%, #3d3d3d 55%, #313131 100%);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero__blob {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__blob--one {
  top: 40px;
  left: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  animation: drift 16s ease-in-out infinite;
}

.hero__blob--two {
  top: 200px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  animation: drift 21s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -26px, 0); }
}

.hero__inner {
  display: grid;
  gap: 36px;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 10px;
}

.hero__title {
  color: var(--color-invert);
  font-size: clamp(34px, 8vw, 46px);
  margin-bottom: 18px;
}

.hero__text {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-lg);
}

.hero__media img {
  width: 100%;
  animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07) translate3d(0, -1.5%, 0); }
}

.quality {
  padding: var(--section-space) 0 0;
}

.quality__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.quality__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-strong);
}

.quality__media img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

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

.quality__text {
  margin: 18px 0 30px;
  max-width: 52ch;
  font-size: 14px;
  color: var(--color-muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat__value {
  display: block;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.1;
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
}

.about {
  padding: var(--section-space) 0 0;
}

.about__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about__media {
  position: relative;
  padding-bottom: 40px;
}

.about__frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.about__frame img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.about__frame:hover img {
  transform: scale(1.05);
}

.about__frame--back {
  width: 78%;
}

.about__frame--front {
  width: 66%;
  margin: -22% 0 0 auto;
  box-shadow: var(--shadow-md);
}

.about__outline {
  position: absolute;
  left: 22%;
  bottom: 22%;
  width: 42%;
  height: 34%;
  border: 1px dashed rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about__text {
  margin: 18px 0 26px;
  max-width: 46ch;
  font-size: 14px;
  color: var(--color-muted);
}

.about__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.about__call {
  font-size: 13px;
  color: var(--color-body);
}

.about__phone {
  position: relative;
  font-weight: 600;
  color: var(--color-ink);
}

.about__phone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.about__phone:hover::after {
  transform: scaleX(1);
}

.services {
  padding: var(--section-space) 0 0;
}

.services__intro {
  display: grid;
  gap: 22px;
  align-items: center;
}

.services__panel {
  position: relative;
  padding: 34px 0;
}

.services__panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24px;
  left: -100vw;
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  z-index: -1;
}

.services__mission {
  font-size: 13px;
  color: var(--color-muted);
  max-width: 48ch;
}

.services__cta {
  justify-self: start;
}

.services__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.service {
  position: relative;
  padding: 4px 0 0;
  transition: transform 0.35s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
}

.service__icon {
  display: inline-flex;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.service__title {
  font-size: 17px;
  margin-bottom: 10px;
}

.service__text {
  font-size: 13px;
  color: var(--color-muted);
  max-width: 42ch;
}

.stock {
  padding: var(--section-space) 0 0;
}

.stock__inner {
  display: grid;
  gap: 30px;
  align-items: center;
}

.stock__text {
  margin: 16px 0 26px;
  max-width: 34ch;
  font-size: 13px;
  color: var(--color-muted);
}

.stock__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stock__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--color-surface-strong);
}

.stock__item img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.stock__item:hover img {
  transform: scale(1.06);
}

.stock__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stock__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stock__grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.catalogue {
  padding: var(--section-space) 0 0;
}

.catalogue__head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.catalogue__text {
  margin: 0;
  max-width: 62ch;
  font-size: 13px;
  color: var(--color-muted);
}

.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.lot {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.lot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lot__media {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--color-surface-strong);
}

.lot__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lot:hover .lot__media img {
  transform: scale(1.06);
}

.lot__range {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.lot__name {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-ink);
}

.lot__spec {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-muted);
}

.lot__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.lot__price {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-ink);
}

.lot__unit {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-muted);
}

.lot__link {
  flex: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  transition: border-color 0.3s var(--ease);
}

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

.catalogue__grid .reveal:nth-child(3n + 2) { transition-delay: 0.08s; }
.catalogue__grid .reveal:nth-child(3n) { transition-delay: 0.16s; }

.asked {
  position: relative;
  padding: calc(var(--section-space) + 12px) 0 0;
}

.asked__dots {
  position: absolute;
  left: 8px;
  top: 120px;
  width: 92px;
  height: 54px;
  background-image: radial-gradient(circle, var(--color-muted) 1.7px, transparent 1.8px);
  background-size: 15px 15px;
  opacity: 0.7;
  pointer-events: none;
}

.asked__block {
  display: none;
}

.asked__grid {
  display: grid;
  gap: 22px;
}

.asked__card {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.asked__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.asked__card--lead {
  background: var(--color-surface);
}

.asked__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(140deg, #d5d5d5, #b6b6b6);
  color: var(--color-invert);
}

.asked__question {
  font-size: 15px;
  margin-bottom: 4px;
}

.asked__meta {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

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

.asked__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.asked__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.promo {
  padding: var(--section-space) 0 0;
}

.promo__inner {
  display: grid;
  gap: 20px;
}

.promo__steps {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.promo__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.promo__step:hover {
  background: #ffffff;
  transform: translateX(4px);
}

.promo__icon {
  display: inline-flex;
  color: var(--color-dark);
}

.promo__title {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
}

.promo__text {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
}

.promo__chevron {
  font-size: 22px;
  color: var(--color-muted);
  transition: transform 0.3s var(--ease);
}

.promo__step:hover .promo__chevron {
  transform: translateX(4px);
}

.promo__card {
  padding: 34px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #4a4a4a, var(--color-darker));
  color: var(--color-invert);
  box-shadow: var(--shadow-md);
}

.promo__heading {
  color: var(--color-invert);
  font-size: clamp(22px, 5vw, 28px);
  margin-bottom: 12px;
}

.promo__lead {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34ch;
  margin-bottom: 24px;
}

.articles {
  padding: var(--section-space) 0 calc(var(--section-space) + 10px);
}

.articles__grid {
  display: grid;
  gap: 26px;
}

.article__media {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.article__media img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.article:hover .article__media img {
  transform: scale(1.05);
}

.article__title {
  font-size: 15px;
  margin-bottom: 6px;
}

.article__text {
  font-size: 13px;
  color: var(--color-muted);
  max-width: 40ch;
}

.articles__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.articles__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.site-footer {
  padding: 44px 0 32px;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
}

.logo--footer {
  color: var(--color-invert);
  justify-content: center;
  display: flex;
  margin-bottom: 34px;
}

.site-footer__top {
  display: grid;
  gap: 32px;
}

.site-footer__title {
  color: var(--color-invert);
  font-size: 22px;
  margin-bottom: 12px;
  max-width: 16ch;
}

.site-footer__text {
  font-size: 13px;
  max-width: 40ch;
  margin-bottom: 20px;
}

.subscribe {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 380px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s var(--ease);
}

.subscribe:focus-within {
  border-color: rgba(255, 255, 255, 0.7);
}

.subscribe__field {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-size: 13px;
  color: var(--color-invert);
}

.subscribe__field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe__field:focus {
  outline: none;
}

.subscribe__button {
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-invert);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.subscribe__button:hover {
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.site-footer__heading {
  color: var(--color-invert);
  font-size: 14px;
  margin-bottom: 14px;
}

.site-footer__nav ul {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.site-footer__nav a {
  position: relative;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-footer__nav a:hover::after {
  transform: scaleX(1);
}

.site-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
}

.site-footer__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.legal {
  padding: 116px 0 var(--section-space);
}

.legal__header {
  max-width: 70ch;
  margin-bottom: 36px;
}

.legal__title {
  font-size: clamp(28px, 6vw, 38px);
  margin-bottom: 12px;
}

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

.legal__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.legal__toc {
  padding: 22px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.legal__toc-title {
  font-size: 15px;
  margin-bottom: 14px;
}

.legal__toc ol {
  display: grid;
  gap: 9px;
  counter-reset: toc;
  font-size: 13px;
}

.legal__toc li {
  counter-increment: toc;
}

.legal__toc a {
  position: relative;
  padding-left: 26px;
  display: inline-block;
  color: var(--color-body);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--color-muted);
  font-size: 11px;
}

.legal__toc a:hover {
  color: var(--color-ink);
  transform: translateX(2px);
}

.legal__body h2 {
  font-size: 19px;
  margin: 34px 0 12px;
  scroll-margin-top: 110px;
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p {
  margin-bottom: 12px;
  font-size: 14px;
  max-width: 72ch;
}

.legal__body ul {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  max-width: 72ch;
}

.legal__body li {
  position: relative;
  padding-left: 18px;
}

.legal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-muted);
}

.legal__body a {
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: transparent;
  pointer-events: none;
}

.progress__bar {
  height: 100%;
  background: var(--color-dark);
  transform: scaleX(0);
  transform-origin: left;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

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

@media (min-width: 620px) {
  .services__grid,
  .articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asked__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  :root {
    --gutter: 32px;
    --section-space: 110px;
  }

  body {
    font-size: 16px;
  }

  .burger {
    display: none;
  }

  .nav {
    position: static;
    padding: 0;
    background: none;
    color: inherit;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
  }

  .nav__list {
    display: flex;
    gap: 26px;
  }

  .nav__link {
    padding: 4px 0;
  }

  .nav__link:hover {
    background: none;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

  .nav__link:hover::after {
    transform: scaleX(1);
  }

  .logo {
    order: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header__inner {
    position: relative;
  }

  .header-search {
    display: flex;
  }

  .hero {
    padding: 150px 0 90px;
  }

  .hero__backdrop {
    bottom: 120px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.82fr;
    align-items: start;
    gap: 60px;
  }

  .hero__content {
    padding-top: 24px;
  }

  .hero__media {
    margin-top: -30px;
    margin-bottom: -120px;
  }

  .quality__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .services__intro {
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
  }

  .services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
  .services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

  .stock__inner {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 60px;
  }

  .asked__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .asked__block {
    display: block;
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 190px;
    height: 130px;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    z-index: -1;
  }

  .asked__card--lead {
    margin-top: -18px;
    padding-bottom: 40px;
  }

  .promo__inner {
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 0;
  }

  .promo__steps {
    padding: 26px 60px 26px 26px;
  }

  .promo__card {
    margin-left: -46px;
    padding: 46px 40px;
  }

  .articles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }

  .site-footer {
    padding: 60px 0 34px;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 50px;
  }

  .site-footer__bottom {
    margin-top: 56px;
  }

  .legal {
    padding: 160px 0 var(--section-space);
  }

  .legal__layout {
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }

  .legal__toc {
    position: sticky;
    top: 110px;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 52px;
  }

  .header-search__field {
    width: 190px;
  }
}

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

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

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